Skip to main content
Module

x/sqlite3/src/database.ts>AggregateFunctionOptions

The fastest and correct SQLite3 module for Deno runtime
Latest
interface AggregateFunctionOptions
implements FunctionOptions
import { type AggregateFunctionOptions } from "https://deno.land/x/sqlite3@0.12.0/src/database.ts";

Options for user-defined aggregate functions.

Properties

start: any | (() => any)
step: (aggregate: any, ...args: any[]) => void
optional
final: (aggregate: any) => any