DefinitelyTyped/node
Troy Gerwien 368266b684 var-interface-module pattern now consistent
Everything (in both node and express) now follows the pattern:
```
declare module "external-name" {
import _ = InternalName.InnerName;
export = _;
}
declare module InternalName {
export var InnerName: InnerName;
export interface InnerName {
// functions and vars in here
}
export module InnerName {
// Must be non-instantiated - so only interfaces and modules in here
}
}

```
2014-03-29 21:21:41 +08:00
..
node-0.8.8.d.ts added/fixed headers k-n 2014-01-24 01:19:01 +01:00
node-0.8.8.d.ts.tscparams Fixed tsc failed on Node.js v0.8.25 2013-10-03 11:23:38 +09:00
node-tests.ts node: fix signatures of readFile* 2014-03-17 14:55:17 +04:00
node.d.ts var-interface-module pattern now consistent 2014-03-29 21:21:41 +08:00