move vscode.env.uriScheme to stable

This commit is contained in:
Peng Lyu 2019-04-11 17:25:56 -07:00
parent b7b9d3321a
commit 67c28b3f03
2 changed files with 5 additions and 5 deletions

5
src/vs/vscode.d.ts vendored
View file

@ -5973,6 +5973,11 @@ declare module 'vscode' {
*/
export const appRoot: string;
/**
* The custom uri scheme the editor registers to in the operating system.
*/
export const uriScheme: string;
/**
* Represents the preferred user-language, like `de-CH`, `fr`, or `en-US`.
*/

View file

@ -616,11 +616,6 @@ declare module 'vscode' {
* An [event](#Event) that fires when the log level has changed.
*/
export const onDidChangeLogLevel: Event<LogLevel>;
/**
* The custom uri scheme the editor registers to in the operating system, like 'vscode', 'vscode-insiders'.
*/
export const uriScheme: string;
}
//#endregion