Path: blob/main/src/vs/workbench/contrib/policyExport/common/policyDto.ts
4780 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45export type LocalizedValueDto = {6key: string;7value: string;8};910export interface CategoryDto {11key: string;12name: LocalizedValueDto;13}1415export interface PolicyDto {16key: string;17name: string;18category: string;19minimumVersion: `${number}.${number}`;20localization: {21description: LocalizedValueDto;22enumDescriptions?: LocalizedValueDto[];23};24type?: string | string[];25default?: unknown;26enum?: string[];27}2829export interface ExportedPolicyDataDto {30categories: CategoryDto[];31policies: PolicyDto[];32}333435