1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/main/shell-session/env-var/env-var-registration.ts
Jim Ehrismann 1ac3d0a36b adding extension api for terminal environment variables
Signed-off-by: Jim Ehrismann <jehrismann@mirantis.com>
2022-02-01 17:14:34 -05:00

11 lines
243 B
TypeScript

/**
* Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information.
*/
export interface ShellEnvVarRegistration {
title: string;
env: Record<string, string>;
}