@lzwme/fe-utils
    Preparing search index...

    Interface ILimitedTaskFactory<T>

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

    Type Parameters

    • T
    Index

    Properties

    Properties

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