diff options
Diffstat (limited to 'js/console.ts')
-rw-r--r-- | js/console.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/console.ts b/js/console.ts index ca08330eb..396def545 100644 --- a/js/console.ts +++ b/js/console.ts @@ -322,7 +322,7 @@ function stringifyWithQuotes( } } -// @internal +/** TODO Do not expose this from "deno" namespace. */ export function stringifyArgs( // tslint:disable-next-line:no-any args: any[], @@ -354,8 +354,8 @@ type PrintFunc = (x: string, isErr?: boolean) => void; const countMap = new Map<string, number>(); const timerMap = new Map<string, number>(); +/** TODO Do not expose this from "deno". */ export class Console { - // @internal constructor(private printFunc: PrintFunc) {} /** Writes the arguments to stdout */ |