From 03edd48edd004cec091541e6b71095cfbc4b4c87 Mon Sep 17 00:00:00 2001 From: Kenta Moriuchi Date: Mon, 3 Apr 2023 02:41:41 +0900 Subject: chore: Turn back on dlintPreferPrimordials (#17715) Closes #17709 --- core/internal.d.ts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'core') diff --git a/core/internal.d.ts b/core/internal.d.ts index a3e8c9e4d..c78310aeb 100644 --- a/core/internal.d.ts +++ b/core/internal.d.ts @@ -588,6 +588,7 @@ declare namespace __bootstrap { export const MapLength: typeof Map.length; export const MapName: typeof Map.name; export const MapPrototype: typeof Map.prototype; + export const MapPrototypeGetSize: (map: Map) => number; export const MapPrototypeGet: UncurryThis; export const MapPrototypeSet: UncurryThis; export const MapPrototypeHas: UncurryThis; @@ -715,6 +716,7 @@ declare namespace __bootstrap { export const SetLength: typeof Set.length; export const SetName: typeof Set.name; export const SetPrototype: typeof Set.prototype; + export const SetPrototypeGetSize: (set: Set) => number; export const SetPrototypeHas: UncurryThis; export const SetPrototypeAdd: UncurryThis; export const SetPrototypeDelete: UncurryThis; @@ -866,6 +868,7 @@ declare namespace __bootstrap { export const SymbolLength: typeof Symbol.length; export const SymbolName: typeof Symbol.name; export const SymbolPrototype: typeof Symbol.prototype; + export const SymbolPrototypeGetDescription: (symbol: symbol) => string; export const SymbolFor: typeof Symbol.for; export const SymbolKeyFor: typeof Symbol.keyFor; export const SymbolAsyncIterator: typeof Symbol.asyncIterator; -- cgit v1.2.3