diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2018-10-08 10:33:30 +1100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-07 22:52:27 -0400 |
commit | ffb41e61f138a683aac5fd89e0dd72b720c929d6 (patch) | |
tree | f1158707336a51744882d733111c4da5e5583bd9 /js/console.ts | |
parent | 1aa7e18ba329cf226d4be3104c726774eff8376c (diff) |
Updates to js to clean up default library
Diffstat (limited to 'js/console.ts')
-rw-r--r-- | js/console.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/console.ts b/js/console.ts index 43d516312..7e4f3e579 100644 --- a/js/console.ts +++ b/js/console.ts @@ -149,6 +149,7 @@ function stringifyWithQuotes( } } +// @internal export function stringifyArgs( // tslint:disable-next-line:no-any args: any[], @@ -178,6 +179,7 @@ export function stringifyArgs( type PrintFunc = (x: string, isErr?: boolean) => void; export class Console { + // @internal constructor(private printFunc: PrintFunc) {} // tslint:disable-next-line:no-any |