diff options
author | Zach <zachauten@gmail.com> | 2022-08-03 08:41:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-03 14:41:44 +0200 |
commit | 00b51ca94b20269baa5d4d84b24e0273a52d5df6 (patch) | |
tree | e1feeed488b1946a9b8309409ff3e15f50b6b54a /core/lib.deno_core.d.ts | |
parent | 2e2c623882e2bb09d0363146c277e44e583d68de (diff) |
core: remove heapStats type definition (#15393)
Diffstat (limited to 'core/lib.deno_core.d.ts')
-rw-r--r-- | core/lib.deno_core.d.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/lib.deno_core.d.ts b/core/lib.deno_core.d.ts index dcc50d263..bd3729ed9 100644 --- a/core/lib.deno_core.d.ts +++ b/core/lib.deno_core.d.ts @@ -73,9 +73,6 @@ declare namespace Deno { */ function shutdown(rid: number): Promise<void>; - /** Get heap stats for current isolate/worker */ - function heapStats(): Record<string, number>; - /** Encode a string to its Uint8Array representation. */ function encode(input: string): Uint8Array; |