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:183

Properties

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

Released under the MIT License