提交 ee618f47 编写于 作者: A Alex Dima

Add IProductService.uiExtensions

上级 f90265bc
......@@ -16,6 +16,7 @@ export interface IProductService {
nameLong: string;
urlProtocol: string;
extensionAllowedProposedApi: string[];
uiExtensions?: string[];
enableTelemetry: boolean;
}
\ No newline at end of file
......@@ -21,5 +21,7 @@ export class ProductService implements IProductService {
get extensionAllowedProposedApi(): string[] { return product.extensionAllowedProposedApi; }
get uiExtensions(): string[] | undefined { return product.uiExtensions; }
get enableTelemetry(): boolean { return product.enableTelemetry; }
}
\ No newline at end of file
......@@ -664,6 +664,7 @@ export class SimpleProductService implements IProductService {
nameLong: string = '';
urlProtocol: string = '';
extensionAllowedProposedApi: string[] = [];
uiExtensions?: string[];
enableTelemetry: boolean = false;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册