@@ -80,28 +80,6 @@ export declare class BaseException extends Error {
80
80
81
81
export declare function basename ( path : Path ) : PathFragment ;
82
82
83
- export declare const bgBlack : ( x : string ) => string ;
84
-
85
- export declare const bgBlue : ( x : string ) => string ;
86
-
87
- export declare const bgCyan : ( x : string ) => string ;
88
-
89
- export declare const bgGreen : ( x : string ) => string ;
90
-
91
- export declare const bgMagenta : ( x : string ) => string ;
92
-
93
- export declare const bgRed : ( x : string ) => string ;
94
-
95
- export declare const bgWhite : ( x : string ) => string ;
96
-
97
- export declare const bgYellow : ( x : string ) => string ;
98
-
99
- export declare const black : ( x : string ) => string ;
100
-
101
- export declare const blue : ( x : string ) => string ;
102
-
103
- export declare const bold : ( x : string ) => string ;
104
-
105
83
export declare function buildJsonPointer ( fragments : string [ ] ) : JsonPointer ;
106
84
107
85
export declare function camelize ( str : string ) : string ;
@@ -116,35 +94,6 @@ export declare function classify(str: string): string;
116
94
117
95
export declare function clean < T > ( array : Array < T | undefined > ) : Array < T > ;
118
96
119
- export declare namespace colors {
120
- const reset : ( x : string ) => string ;
121
- const bold : ( x : string ) => string ;
122
- const dim : ( x : string ) => string ;
123
- const italic : ( x : string ) => string ;
124
- const underline : ( x : string ) => string ;
125
- const inverse : ( x : string ) => string ;
126
- const hidden : ( x : string ) => string ;
127
- const strikethrough : ( x : string ) => string ;
128
- const black : ( x : string ) => string ;
129
- const red : ( x : string ) => string ;
130
- const green : ( x : string ) => string ;
131
- const yellow : ( x : string ) => string ;
132
- const blue : ( x : string ) => string ;
133
- const magenta : ( x : string ) => string ;
134
- const cyan : ( x : string ) => string ;
135
- const white : ( x : string ) => string ;
136
- const grey : ( x : string ) => string ;
137
- const gray : ( x : string ) => string ;
138
- const bgBlack : ( x : string ) => string ;
139
- const bgRed : ( x : string ) => string ;
140
- const bgGreen : ( x : string ) => string ;
141
- const bgYellow : ( x : string ) => string ;
142
- const bgBlue : ( x : string ) => string ;
143
- const bgMagenta : ( x : string ) => string ;
144
- const bgCyan : ( x : string ) => string ;
145
- const bgWhite : ( x : string ) => string ;
146
- }
147
-
148
97
export declare class ContentHasMutatedException extends BaseException {
149
98
constructor ( path : string ) ;
150
99
}
@@ -232,8 +181,6 @@ export interface CustomDimensionsAndMetricsOptions {
232
181
metrics ?: ( boolean | number | string ) [ ] ;
233
182
}
234
183
235
- export declare const cyan : ( x : string ) => string ;
236
-
237
184
export declare function dasherize ( str : string ) : string ;
238
185
239
186
export declare function decamelize ( str : string ) : string ;
@@ -246,8 +193,6 @@ export declare class DependencyNotFoundException extends BaseException {
246
193
constructor ( ) ;
247
194
}
248
195
249
- export declare const dim : ( x : string ) => string ;
250
-
251
196
export declare function dirname ( path : Path ) : Path ;
252
197
253
198
export declare class Empty implements ReadonlyHost {
@@ -306,14 +251,6 @@ export declare function getSystemPath(path: Path): string;
306
251
307
252
export declare function getTypesOfSchema ( schema : JsonSchema ) : Set < string > ;
308
253
309
- export declare const gray : ( x : string ) => string ;
310
-
311
- export declare const green : ( x : string ) => string ;
312
-
313
- export declare const grey : ( x : string ) => string ;
314
-
315
- export declare const hidden : ( x : string ) => string ;
316
-
317
254
export interface Host < StatsT extends object = { } > extends ReadonlyHost < StatsT > {
318
255
delete ( path : Path ) : Observable < void > ;
319
256
rename ( from : Path , to : Path ) : Observable < void > ;
@@ -365,8 +302,6 @@ export declare class InvalidUpdateRecordException extends BaseException {
365
302
constructor ( ) ;
366
303
}
367
304
368
- export declare const inverse : ( x : string ) => string ;
369
-
370
305
export declare function isAbsolute ( p : Path ) : boolean ;
371
306
372
307
export declare function isJsonArray ( value : JsonValue ) : value is JsonArray ;
@@ -377,8 +312,6 @@ export declare function isObservable(obj: any | Observable<any>): obj is Observa
377
312
378
313
export declare function isPromise ( obj : any ) : obj is Promise < any > ;
379
314
380
- export declare const italic : ( x : string ) => string ;
381
-
382
315
export declare function join ( p1 : Path , ...others : string [ ] ) : Path ;
383
316
384
317
export declare function joinJsonPointer ( root : JsonPointer , ...others : string [ ] ) : JsonPointer ;
@@ -586,8 +519,6 @@ export declare class LoggingAnalytics implements Analytics {
586
519
587
520
export declare type LogLevel = 'debug' | 'info' | 'warn' | 'error' | 'fatal' ;
588
521
589
- export declare const magenta : ( x : string ) => string ;
590
-
591
522
export declare function mapObject < T , V > ( obj : {
592
523
[ k : string ] : T ;
593
524
} , mapper : ( k : string , v : T ) => V ) : {
@@ -810,8 +741,6 @@ export declare function readWorkspace(path: string, host: WorkspaceHost, format?
810
741
workspace : WorkspaceDefinition ;
811
742
} > ;
812
743
813
- export declare const red : ( x : string ) => string ;
814
-
815
744
export interface ReferenceResolver < ContextT > {
816
745
( ref : string , context ?: ContextT ) : {
817
746
context ?: ContextT ;
@@ -837,8 +766,6 @@ export interface RequiredValidatorError extends SchemaValidatorErrorBase {
837
766
} ;
838
767
}
839
768
840
- export declare const reset : ( x : string ) => string ;
841
-
842
769
export declare function resetNormalizeCache ( ) : void ;
843
770
844
771
export declare function resolve ( p1 : Path , p2 : Path ) : Path ;
@@ -1010,8 +937,6 @@ export declare type Stats<T extends object = {}> = T & {
1010
937
readonly birthtime : Date ;
1011
938
} ;
1012
939
1013
- export declare const strikethrough : ( x : string ) => string ;
1014
-
1015
940
export declare function stringToFileBuffer ( str : string ) : FileBuffer ;
1016
941
1017
942
export declare function stripIndent ( strings : TemplateStringsArray , ...values : any [ ] ) : string ;
@@ -1171,8 +1096,6 @@ export declare class TransformLogger extends Logger {
1171
1096
1172
1097
export declare function trimNewlines ( strings : TemplateStringsArray , ...values : any [ ] ) : string ;
1173
1098
1174
- export declare const underline : ( x : string ) => string ;
1175
-
1176
1099
export declare function underscore ( str : string ) : string ;
1177
1100
1178
1101
export declare class UnexpectedEndOfInputException extends JsonException {
@@ -1197,8 +1120,6 @@ export declare function visitJson<ContextT>(json: JsonValue, visitor: JsonVisito
1197
1120
1198
1121
export declare function visitJsonSchema ( schema : JsonSchema , visitor : JsonSchemaVisitor ) : void ;
1199
1122
1200
- export declare const white : ( x : string ) => string ;
1201
-
1202
1123
export declare type WindowsPath = string & {
1203
1124
__PRIVATE_DEVKIT_WINDOWS_PATH : void ;
1204
1125
} ;
@@ -1220,5 +1141,3 @@ export interface WorkspaceHost {
1220
1141
}
1221
1142
1222
1143
export declare function writeWorkspace ( workspace : WorkspaceDefinition , host : WorkspaceHost , path ?: string , format ?: WorkspaceFormat ) : Promise < void > ;
1223
-
1224
- export declare const yellow : ( x : string ) => string ;
0 commit comments