added test-module.d.ts

This commit is contained in:
Bart van der Schoor
2014-02-28 20:27:33 +01:00
parent 8b1a4c1040
commit 35765e6305
+6
View File
@@ -0,0 +1,6 @@
declare module 'test-module' {
interface Such {
amaze(): void;
}
export function wow(): Such;
}