File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -536,8 +536,6 @@ namespace ts {
536
536
let deferredGlobalTemplateStringsArrayType: ObjectType;
537
537
let deferredGlobalImportMetaType: ObjectType;
538
538
let deferredGlobalExtractSymbol: Symbol;
539
- let deferredGlobalExcludeSymbol: Symbol;
540
- let deferredGlobalPickSymbol: Symbol;
541
539
let deferredGlobalOmitSymbol: Symbol;
542
540
let deferredGlobalBigIntType: ObjectType;
543
541
@@ -9274,14 +9272,6 @@ namespace ts {
9274
9272
return deferredGlobalExtractSymbol || (deferredGlobalExtractSymbol = getGlobalSymbol("Extract" as __String, SymbolFlags.TypeAlias, Diagnostics.Cannot_find_global_type_0)!); // TODO: GH#18217
9275
9273
}
9276
9274
9277
- function getGlobalExcludeSymbol(): Symbol {
9278
- return deferredGlobalExcludeSymbol || (deferredGlobalExcludeSymbol = getGlobalSymbol("Exclude" as __String, SymbolFlags.TypeAlias, Diagnostics.Cannot_find_global_type_0)!); // TODO: GH#18217
9279
- }
9280
-
9281
- function getGlobalPickSymbol(): Symbol {
9282
- return deferredGlobalPickSymbol || (deferredGlobalPickSymbol = getGlobalSymbol("Pick" as __String, SymbolFlags.TypeAlias, Diagnostics.Cannot_find_global_type_0)!); // TODO: GH#18217
9283
- }
9284
-
9285
9275
function getGlobalOmitSymbol(): Symbol {
9286
9276
return deferredGlobalOmitSymbol || (deferredGlobalOmitSymbol = getGlobalSymbol("Omit" as __String, SymbolFlags.TypeAlias, Diagnostics.Cannot_find_global_type_0)!); // TODO: GH#18217
9287
9277
}
You can’t perform that action at this time.
0 commit comments