Skip to content

sqlocal / index / CallbackUserFunction

Type Alias: CallbackUserFunction

ts
type CallbackUserFunction = {
  func: (...args) => void;
  name: string;
  type: "callback";
};

Defined in: src/types.ts:172

Properties

PropertyTypeDefined in
func(...args) => voidsrc/types.ts:175
namestringsrc/types.ts:174
type"callback"src/types.ts:173

Released under the MIT License