Interface ILimitedTaskFactory<T>

interface ILimitedTaskFactory<T> {
    c: (value: T | Promise<T>) => void;
    e: (error?: unknown) => void;
    factory: ITask<Promise<T>>;
}

Type Parameters

  • T

Properties

Properties

c: (value: T | Promise<T>) => void
e: (error?: unknown) => void
factory: ITask<Promise<T>>