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