UNPKG

@jkcfg/std

Version:

jk standard library

8 lines (7 loc) 201 B
/** * @module std/debug * * debug exists to help with testing the runtime. */ export declare function echo(...args: any[]): Promise<any[]>; export declare function echoSync(...args: any[]): any[];