UNPKG

@theia/variable-resolver

Version:

Theia - Variable Resolver Extension

48 lines (44 loc) 1.96 kB
// ***************************************************************************** // Copyright (C) 2019 TypeFox and others. // // This program and the accompanying materials are made available under the // terms of the Eclipse Public License v. 2.0 which is available at // http://www.eclipse.org/legal/epl-2.0. // // This Source Code may also be made available under the following Secondary // Licenses when the conditions for such availability set forth in the Eclipse // Public License v. 2.0 are satisfied: GNU General Public License, version 2 // with the GNU Classpath Exception which is available at // https://www.gnu.org/software/classpath/license.html. // // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 // ***************************************************************************** /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ /* * copied from * https://github.com/microsoft/vscode/blob/0a34756cae4fc67739e60c708b04637089f8bb0d/src/vs/workbench/services/configurationResolver/common/configurationResolver.ts#L41-L63 */ export interface VariablePromptStringInput { id: string; type: 'promptString'; description: string; default?: string; } export interface VariablePickStringInput { id: string; type: 'pickString'; description: string; options: string[]; default?: string; } export interface VariableCommandInput { id: string; type: 'command'; command: string; // eslint-disable-next-line @typescript-eslint/no-explicit-any args?: any; } export type VariableInput = VariablePromptStringInput | VariablePickStringInput | VariableCommandInput;