diff options
author | Kenta Moriuchi <moriken@kimamass.com> | 2023-04-03 02:41:41 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-02 19:41:41 +0200 |
commit | 03edd48edd004cec091541e6b71095cfbc4b4c87 (patch) | |
tree | 72aed1dae803334b73479ffebc7ca8c83d10addf /core/internal.d.ts | |
parent | ad8d0c90d1887beb8a5f2c6d30f9dc71cc63e4fe (diff) |
chore: Turn back on dlintPreferPrimordials (#17715)
Closes #17709
Diffstat (limited to 'core/internal.d.ts')
-rw-r--r-- | core/internal.d.ts | 3 |
1 files changed, 3 insertions, 0 deletions
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<typeof Map.prototype.get>; export const MapPrototypeSet: UncurryThis<typeof Map.prototype.set>; export const MapPrototypeHas: UncurryThis<typeof Map.prototype.has>; @@ -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<typeof Set.prototype.has>; export const SetPrototypeAdd: UncurryThis<typeof Set.prototype.add>; export const SetPrototypeDelete: UncurryThis<typeof Set.prototype.delete>; @@ -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; |