Files
n8n-nodes-gwezz-changdunovel/node_modules/run-async/index.d.ts
2025-10-26 23:10:15 +08:00

6 lines
157 B
TypeScript

declare function runAsync<F extends (...args: any[]) => any>(
func: F,
): (...args: Parameters<F>) => Promise<Awaited<ReturnType<F>>>;
export = runAsync;