diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-05-03 01:30:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-02 19:30:03 -0400 |
commit | ea917384feb1c800438d13dddac9ee977d2c47fe (patch) | |
tree | e3d5069ac4f96713c98519853cfe25e93c32f883 /cli/tsc/compiler.d.ts | |
parent | c9ac851b9005e5a1e90016e52b3a10dd1f1012b7 (diff) |
refactor(core): convert core.print() to a builtin op (#10436)
Diffstat (limited to 'cli/tsc/compiler.d.ts')
-rw-r--r-- | cli/tsc/compiler.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/compiler.d.ts b/cli/tsc/compiler.d.ts index 13e6564b4..e5ce12cd3 100644 --- a/cli/tsc/compiler.d.ts +++ b/cli/tsc/compiler.d.ts @@ -36,7 +36,7 @@ declare global { // deno-lint-ignore no-explicit-any opSync<T>(name: string, params: T): any; ops(): void; - print(msg: string, code?: number): void; + print(msg: string, stderr: bool): void; registerErrorClass( name: string, Ctor: typeof Error, |