UNPKG
@jkcfg/std
Version:
latest (0.4.0)
0.4.0
0.3.2
0.3.0
0.2.10
0.2.9
0.2.8
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.1.0
jk standard library
github.com/jkcfg/jk
jkcfg/jk
@jkcfg/std
/
debug.d.ts
8 lines
(7 loc)
•
201 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** *
@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
[];