Interface AsyncState<T>

interface AsyncState<T> {
    entering: T[];
    items: T[];
    leaving: T[];
}

Type Parameters

  • T

Properties

entering: T[]
items: T[]
leaving: T[]