forked from microsoft/vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetwork.ts
More file actions
46 lines (34 loc) · 1.19 KB
/
network.ts
File metadata and controls
46 lines (34 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. 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';
export const data: string = 'data';
}