Files
DefinitelyTyped/test-module/test-module.d.ts
Bart van der Schoor 461def4a53 added definitions for test-module
amaze
2014-02-28 20:27:33 +01:00

7 lines
101 B
TypeScript

interface Such {
amaze(): void;
}
declare module 'test-module' {
export function wow(): Such;
}