TypeScript/tests/baselines/reference/bangInModuleName.types

19 lines
354 B
Plaintext

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