UNPKG

@xylabs/forget

Version:

Base functionality used throughout XY Labs TypeScript/JavaScript libraries

9 lines 331 B
export interface ForgetConfig<T = any> { name?: string; onCancel?: () => void; onComplete?: (result: [T | undefined, Error | undefined]) => void; onException?: (error: Error) => void; timeout?: number; } export declare const defaultForgetConfig: ForgetConfig<unknown>; //# sourceMappingURL=ForgetConfig.d.ts.map