Files
tp-we-vue/node_modules/tinypool/dist/entry/utils.d.ts
2024-11-28 23:08:17 +01:00

6 lines
206 B
TypeScript

type Handler = Function;
declare function getHandler(filename: string, name: string): Promise<Handler | null>;
declare function throwInNextTick(error: Error): void;
export { getHandler, throwInNextTick };