fix: add custom global functions to ts decls

This commit is contained in:
TopchetoEU 2025-01-06 17:05:59 +02:00
parent 51b347e0d7
commit f6ce261485
Signed by: topchetoeu
GPG Key ID: 6531B8583E5F6ED4

View File

@ -17,6 +17,8 @@
/// <reference path="./globals/weak-map.d.ts"/>
declare function print(...args: any[]): void;
declare function exit(): never;
declare function measure(func: () => void): void;
declare type IArguments = Array<any>;