vending-machine/mobile/node_modules/tinypool/dist/entry/utils.d.ts
2026-04-03 06:07:13 +08:00

7 lines
249 B
TypeScript

//#region src/entry/utils.d.ts
type Handler = Function;
declare function getHandler(filename: string, name: string): Promise<Handler | null>;
declare function throwInNextTick(error: Error): void;
//#endregion
export { getHandler, throwInNextTick };