mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
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
}
}
```
|
||
|---|---|---|
| .. | ||
| node-0.8.8.d.ts | ||
| node-0.8.8.d.ts.tscparams | ||
| node-tests.ts | ||
| node.d.ts | ||