@mazzlabs/prisma-session-store-fix
Version:
Prisma express-session store
8 lines (7 loc) • 310 B
TypeScript
/**
* Runs a callback with a number of arguments on the next tick
*
* @param callback the function to run in the future
* @param args the arguments for the `callback` function when it is run
*/
export declare const defer: <T extends Function, A extends unknown[]>(callback: T, ...args: A) => void;