core: remove heapStats type definition (#15393)

This commit is contained in:
Zach 2022-08-03 08:41:44 -04:00 committed by GitHub
parent 2e2c623882
commit 00b51ca94b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,9 +73,6 @@ declare namespace Deno {
*/ */
function shutdown(rid: number): Promise<void>; 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. */ /** Encode a string to its Uint8Array representation. */
function encode(input: string): Uint8Array; function encode(input: string): Uint8Array;