taraskevizer
    Preparing search index...

    Type Alias AsyncTaraskStep<Storage>

    AsyncTaraskStep: (
        context: {
            cfg: DeepReadonly<TaraskConfig>;
            storage: Storage;
            text: string;
        },
    ) => void
    | Promise<void>

    Step of an async pipeline.

    Type Parameters

    • Storage extends object = object

    Type Declaration

      • (
            context: {
                cfg: DeepReadonly<TaraskConfig>;
                storage: Storage;
                text: string;
            },
        ): void
        | Promise<void>
      • Parameters

        Returns void | Promise<void>