Interface SqliteAggregateOptions

interface SqliteAggregateOptions {
    deterministic?: boolean;
    directOnly?: boolean;
    inverse?: ((total, dropped) => any);
    result?: ((total) => any);
    safeIntegers?: boolean;
    start?: any;
    step: ((total, next) => any);
    varargs?: boolean;
}

Properties

deterministic?: boolean
directOnly?: boolean
inverse?: ((total, dropped) => any)

Type declaration

    • (total, dropped): any
    • Parameters

      • total: any
      • dropped: any

      Returns any

result?: ((total) => any)

Type declaration

    • (total): any
    • Parameters

      • total: any

      Returns any

safeIntegers?: boolean
start?: any
step: ((total, next) => any)

Type declaration

    • (total, next): any
    • Parameters

      • total: any
      • next: any

      Returns any

varargs?: boolean