Skip to content

Commit

Permalink
definitions for console.log()
Browse files Browse the repository at this point in the history
  • Loading branch information
arusakov committed Jan 20, 2017
1 parent 4de90b1 commit 7a9034d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"suppressImplicitAnyIndexErrors": true,
"strictNullChecks": false,
"lib": [
"dom", "es2015" // dom for console.log only
"es5", "es2015.core"
],
"module": "commonjs",
"moduleResolution": "node",
Expand Down
1 change: 1 addition & 0 deletions src/typings/console.log.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
declare const console: { log(...args: any[]): void };

0 comments on commit 7a9034d

Please sign in to comment.