Update baselines

This commit is contained in:
Nathan Shively-Sanders 2017-04-24 10:45:03 -07:00
parent d863aef57e
commit a44b972682

View File

@ -1,10 +1,12 @@
/a.ts(1,22): error TS7016: Could not find a declaration file for module 'foo'. '/node_modules/foo/index.js' implicitly has an 'any' type.
Try `npm install @types/foo` if it exists or adding `declare module 'foo'` in a separate file.
==== /a.ts (1 errors) ====
import * as foo from "foo";
~~~~~
!!! error TS7016: Could not find a declaration file for module 'foo'. '/node_modules/foo/index.js' implicitly has an 'any' type.
!!! error TS7016: Try `npm install @types/foo` if it exists or adding `declare module 'foo'` in a separate file.
==== /node_modules/foo/index.js (0 errors) ====
// This tests that `--noImplicitAny` disables untyped modules.