-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy path_golden-api.ts
53 lines (46 loc) · 1.48 KB
/
_golden-api.ts
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
47
48
49
50
51
52
53
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
export * from './exception/exception';
// Start experimental namespace
export * from './workspace/index';
// End experimental namespace
// Start json namespace
export * from './json/interface';
export * from './json/parser';
export * from './json/schema/interface';
export * from './json/schema/pointer';
export * from './json/schema/registry';
export * from './json/schema/visitor';
export * from './json/schema/utility';
export * from './json/schema/transforms';
// End json namespace
// Start logging namespace
export * from './logger/indent';
export * from './logger/level';
export * from './logger/logger';
export * from './logger/null-logger';
export * from './logger/transform-logger';
// End logging namespace
// Start terminal namespace
export * from './terminal/text';
export * from './terminal/colors';
// End terminal namespace
// Start utils namespace
export * from './utils/literals';
export * from './utils/strings';
export * from './utils/array';
export * from './utils/object';
export * from './utils/template';
export * from './utils/partially-ordered-set';
export * from './utils/priority-queue';
export * from './utils/lang';
// End utils namespace
// Start virtualFs namespace
export * from './virtual-fs/path';
export * from './virtual-fs/host/index';
// End virtualFs namespace