sqlocal / index / AggregateUserFunction
Type Alias: AggregateUserFunction
ts
type AggregateUserFunction = {
func: {
final: (...args) => any;
step: (...args) => void;
};
name: string;
type: "aggregate";
};Defined in: src/types.ts:182
Properties
| Property | Type | Defined in |
|---|---|---|
func | { final: (...args) => any; step: (...args) => void; } | src/types.ts:185 |
func.final | (...args) => any | src/types.ts:187 |
func.step | (...args) => void | src/types.ts:186 |
name | string | src/types.ts:184 |
type | "aggregate" | src/types.ts:183 |

