fix: add custom global functions to ts decls

This commit is contained in:
2025-01-06 17:05:59 +02:00
parent 51b347e0d7
commit f6ce261485

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>;