TypeScript/tests/baselines/reference/bangInModuleName.symbols

19 lines
417 B
Plaintext

=== tests/cases/compiler/a.ts ===
/// <reference path="a.d.ts"/>
import * as http from 'intern/dojo/node!http';
>http : Symbol(http, Decl(a.ts, 2, 6))
=== tests/cases/compiler/a.d.ts ===
declare module "http" {
}
declare module 'intern/dojo/node!http' {
import http = require('http');
>http : Symbol(http, Decl(a.d.ts, 3, 40))
export = http;
>http : Symbol(http, Decl(a.d.ts, 3, 40))
}