mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-11 02:32:35 -05:00
* Initial port of release/0.24 source code * Fix additional headers * Fix a typo in launch.json
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
'use strict';
|
|
|
|
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';
|
|
|
|
/**
|
|
* A schema that is used for setting files
|
|
*/
|
|
export const vscode: string = 'vscode';
|
|
|
|
/**
|
|
* A schema that is used for internal private files
|
|
*/
|
|
export const internal: string = 'private';
|
|
|
|
/**
|
|
* A walk-through document.
|
|
*/
|
|
export const walkThrough: string = 'walkThrough';
|
|
|
|
/**
|
|
* An embedded code snippet.
|
|
*/
|
|
export const walkThroughSnippet: string = 'walkThroughSnippet';
|
|
|
|
export const http: string = 'http';
|
|
|
|
export const https: string = 'https';
|
|
|
|
export const file: string = 'file';
|
|
|
|
export const mailto: string = 'mailto';
|
|
|
|
export const untitled: string = 'untitled';
|
|
}
|