TypeScript/tests/cases/fourslash/importNameCodeFixNewImportAmbient2.ts

23 lines
380 B
TypeScript
Raw Normal View History

/// <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();`
2017-05-01 20:42:22 +02:00
]);