5 lines
182 B
TypeScript
5 lines
182 B
TypeScript
declare function getHandler(filename: string, name: string): Promise<Function | null>;
|
|
declare function throwInNextTick(error: Error): void;
|
|
|
|
export { getHandler, throwInNextTick };
|