UNPKG

@mazzlabs/prisma-session-store-fix

Version:
8 lines (7 loc) 310 B
/** * 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;