added test-module.d.ts

This commit is contained in:
Bart van der Schoor
2014-02-27 21:18:42 +01:00
parent 8b1a4c1040
commit 35765e6305

6
test-module/test-module.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
declare module 'test-module' {
interface Such {
amaze(): void;
}
export function wow(): Such;
}