Skip to content

sqlocal / index / WindowUserFunction

Type Alias: WindowUserFunction

ts
type WindowUserFunction = {
  func: {
     final: (...args) => any;
     inverse: (...args) => void;
     step: (...args) => void;
     value: (...args) => any;
  };
  name: string;
  type: "window";
};

Defined in: src/types.ts:191

Properties

PropertyTypeDefined in
func{ final: (...args) => any; inverse: (...args) => void; step: (...args) => void; value: (...args) => any; }src/types.ts:194
func.final(...args) => anysrc/types.ts:198
func.inverse(...args) => voidsrc/types.ts:197
func.step(...args) => voidsrc/types.ts:195
func.value(...args) => anysrc/types.ts:196
namestringsrc/types.ts:193
type"window"src/types.ts:192

Released under the MIT License