From 1e7d699eebbdea5926848013ffc7b295059c32f8 Mon Sep 17 00:00:00 2001 From: Zach Date: Wed, 3 Aug 2022 08:41:44 -0400 Subject: [PATCH] core: remove heapStats type definition (#15393) --- core/lib.deno_core.d.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/lib.deno_core.d.ts b/core/lib.deno_core.d.ts index dcc50d2631..bd3729ed99 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; - /** Get heap stats for current isolate/worker */ - function heapStats(): Record; - /** Encode a string to its Uint8Array representation. */ function encode(input: string): Uint8Array;