TypeScript/tests/cases/fourslash/importNameCodeFixNewImportAmbient2.ts
Nathan Shively-Sanders 2479c071f9 Update baselines
2017-05-01 11:42:22 -07:00

22 lines
376 B
TypeScript

/// <reference path="fourslash.ts" />
////[|/*
//// * I'm a license or something
//// */
////f1/*0*/();|]
// @Filename: ambientModule.ts
//// declare module "ambient-module" {
//// export function f1();
//// export var v1;
//// }
verify.importFixAtPosition([
`/*
* I'm a license or something
*/
import { f1 } from "ambient-module";
f1();`
]);