diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2018-09-25 01:27:02 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-25 01:27:02 -0400 |
commit | f156a86024fc98e63f42c1c7acccac0af10950ef (patch) | |
tree | c024ecd75f5574e412eba937b1a46d8a0232e234 /js/libdeno.ts | |
parent | ad5065e23ec33af1422eeffdbb877ef8fd5f6da4 (diff) |
console.warn goes to stderr (#810)
Diffstat (limited to 'js/libdeno.ts')
-rw-r--r-- | js/libdeno.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/libdeno.ts b/js/libdeno.ts index 142d779c2..8445a2d2b 100644 --- a/js/libdeno.ts +++ b/js/libdeno.ts @@ -8,7 +8,7 @@ interface Libdeno { send(msg: ArrayBufferView): null | Uint8Array; - print(x: string): void; + print(x: string, isErr?: boolean): void; setGlobalErrorHandler: ( handler: ( |