mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Merge from vscode a234f13c45b40a0929777cb440ee011b7549eed2 (#8911)
* Merge from vscode a234f13c45b40a0929777cb440ee011b7549eed2 * update distro * fix layering * update distro * fix tests
This commit is contained in:
@@ -12,47 +12,47 @@ export namespace Schemas {
|
||||
* A schema that is used for models that exist in memory
|
||||
* only and that have no correspondence on a server or such.
|
||||
*/
|
||||
export const inMemory: string = 'inmemory';
|
||||
export const inMemory = 'inmemory';
|
||||
|
||||
/**
|
||||
* A schema that is used for setting files
|
||||
*/
|
||||
export const vscode: string = 'vscode';
|
||||
export const vscode = 'vscode';
|
||||
|
||||
/**
|
||||
* A schema that is used for internal private files
|
||||
*/
|
||||
export const internal: string = 'private';
|
||||
export const internal = 'private';
|
||||
|
||||
/**
|
||||
* A walk-through document.
|
||||
*/
|
||||
export const walkThrough: string = 'walkThrough';
|
||||
export const walkThrough = 'walkThrough';
|
||||
|
||||
/**
|
||||
* An embedded code snippet.
|
||||
*/
|
||||
export const walkThroughSnippet: string = 'walkThroughSnippet';
|
||||
export const walkThroughSnippet = 'walkThroughSnippet';
|
||||
|
||||
export const http: string = 'http';
|
||||
export const http = 'http';
|
||||
|
||||
export const https: string = 'https';
|
||||
export const https = 'https';
|
||||
|
||||
export const file: string = 'file';
|
||||
export const file = 'file';
|
||||
|
||||
export const mailto: string = 'mailto';
|
||||
export const mailto = 'mailto';
|
||||
|
||||
export const untitled: string = 'untitled';
|
||||
export const untitled = 'untitled';
|
||||
|
||||
export const data: string = 'data';
|
||||
export const data = 'data';
|
||||
|
||||
export const command: string = 'command';
|
||||
export const command = 'command';
|
||||
|
||||
export const vscodeRemote: string = 'vscode-remote';
|
||||
export const vscodeRemote = 'vscode-remote';
|
||||
|
||||
export const vscodeRemoteResource: string = 'vscode-remote-resource';
|
||||
export const vscodeRemoteResource = 'vscode-remote-resource';
|
||||
|
||||
export const userData: string = 'vscode-userdata';
|
||||
export const userData = 'vscode-userdata';
|
||||
}
|
||||
|
||||
class RemoteAuthoritiesImpl {
|
||||
|
||||
Reference in New Issue
Block a user