1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

make ext.isBundled non optional

Signed-off-by: Roman <ixrock@gmail.com>
This commit is contained in:
Roman 2020-11-07 18:50:58 +02:00
parent 5643e84401
commit 9a0378f7c7

View File

@ -10,7 +10,7 @@ import { getBundledExtensions } from "../common/utils/app-version"
export interface InstalledExtension {
readonly manifest: LensExtensionManifest;
readonly manifestPath: string;
readonly isBundled?: boolean; // defined in project root's package.json
readonly isBundled: boolean; // defined in project root's package.json
isEnabled: boolean;
}