mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-08 08:04:19 +08:00
7 lines
116 B
TypeScript
7 lines
116 B
TypeScript
declare module 'test-module' {
|
|
interface Such {
|
|
amaze(): void;
|
|
}
|
|
export function wow(): Such;
|
|
}
|