Skip to content

sqlocal / index / ScalarUserFunction

Type Alias: ScalarUserFunction

ts
type ScalarUserFunction = {
  func: (...args) => any;
  name: string;
  type: "scalar";
};

Defined in: src/types.ts:177

Properties

PropertyTypeDefined in
func(...args) => anysrc/types.ts:180
namestringsrc/types.ts:179
type"scalar"src/types.ts:178

Released under the MIT License