mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 20:29:11 +00:00
do not export isConsoleInstance
(#2850)
This commit is contained in:
parent
91ba3410a3
commit
e9908453df
2 changed files with 2 additions and 3 deletions
3
js/lib.deno_runtime.d.ts
vendored
3
js/lib.deno_runtime.d.ts
vendored
|
@ -1176,7 +1176,6 @@ declare namespace Deno {
|
|||
colors: boolean;
|
||||
indentLevel: number;
|
||||
}>;
|
||||
export const isConsoleInstance: unique symbol;
|
||||
/** A symbol which can be used as a key for a custom method which will be called
|
||||
* when `Deno.inspect()` is called, or when the object is logged to the console.
|
||||
*/
|
||||
|
@ -1957,7 +1956,7 @@ declare namespace consoleTypes {
|
|||
static kClear: string;
|
||||
static kClearScreenDown: string;
|
||||
}
|
||||
export const isConsoleInstance: unique symbol;
|
||||
const isConsoleInstance: unique symbol;
|
||||
export class Console {
|
||||
private printFunc;
|
||||
indentLevel: number;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue