Interface DexieCollection<T, TKey>

interface DexieCollection<T, TKey> {
    delete(): DexiePromiseExtended<number>;
    first(): DexiePromiseExtended<undefined | T>;
    limit(n): DexieCollection<T, TKey>;
    or(indexOrPrimayKey): DexieWhereClause<T, TKey>;
    reverse(): DexieCollection<T, TKey>;
    sortBy(keyPath): DexiePromiseExtended<T[]>;
    toArray(): DexiePromiseExtended<T[]>;
}

Type Parameters

Methods

Generated using TypeDoc