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
| Property | Type | Defined in |
|---|---|---|
func | { final: (...args) => any; inverse: (...args) => void; step: (...args) => void; value: (...args) => any; } | src/types.ts:194 |
func.final | (...args) => any | src/types.ts:198 |
func.inverse | (...args) => void | src/types.ts:197 |
func.step | (...args) => void | src/types.ts:195 |
func.value | (...args) => any | src/types.ts:196 |
name | string | src/types.ts:193 |
type | "window" | src/types.ts:192 |

