Skip to content

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

PropertyTypeDefined in
func{ final: (...args) => any; step: (...args) => void; }src/types.ts:185
func.final(...args) => anysrc/types.ts:187
func.step(...args) => voidsrc/types.ts:186
namestringsrc/types.ts:184
type"aggregate"src/types.ts:183

Released under the MIT License