Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/sqlite3/mod.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/mod.ts";

Options for user-defined aggregate functions.

Properties

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