interface DataStoreSnapshot<T> {
    isSynced: boolean;
    items: T[];
}

Type Parameters

Properties

Properties

isSynced: boolean
items: T[]