@oazmi/kitchensink - v0.9.13
    Preparing search index...

    Interface ChainedPromiseQueueConfig<T>

    interface ChainedPromiseQueueConfig<T> {
        onEmpty?: () => void;
        isEmpty?: boolean;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    onEmpty?: () => void

    provide a callback whenever the queue of promises goes empty (each promise element is fulfilled)

    isEmpty?: boolean

    specify if onEmpty should be immediately called when the queue is first created. defaults to false