mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-21 19:40:40 -07:00
35 lines
732 B
TypeScript
35 lines
732 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
export interface VariableDefinition {
|
|
type: 'string';
|
|
description: string;
|
|
default?: string;
|
|
required?: boolean;
|
|
}
|
|
|
|
export interface VariableSchema {
|
|
[key: string]: VariableDefinition;
|
|
}
|
|
|
|
const PATH_SEPARATOR_DEFINITION = {
|
|
type: 'string',
|
|
description: 'The path separator.',
|
|
} as const;
|
|
|
|
export const VARIABLE_SCHEMA = {
|
|
extensionPath: {
|
|
type: 'string',
|
|
description: 'The path of the extension in the filesystem.',
|
|
},
|
|
workspacePath: {
|
|
type: 'string',
|
|
description: 'The absolute path of the current workspace.',
|
|
},
|
|
'/': PATH_SEPARATOR_DEFINITION,
|
|
pathSeparator: PATH_SEPARATOR_DEFINITION,
|
|
} as const;
|