mirror of
https://github.com/Wessel/lumah.git
synced 2026-06-06 03:05:46 +02:00
9 lines
174 B
TypeScript
9 lines
174 B
TypeScript
declare namespace lumah {
|
|
export function register(name: string, method: any): number;
|
|
export function run(): void;
|
|
}
|
|
|
|
declare module 'lumah' {
|
|
export = lumah;
|
|
}
|