TypeScript/tests/cases/compiler/bangInModuleName.ts
2015-11-23 13:08:44 -08:00

17 lines
278 B
TypeScript

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