DefinitelyTyped/test-module/test-module.d.ts
2014-02-28 20:27:33 +01:00

8 lines
116 B
TypeScript

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