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