UNPKG

@cute-dw/core

Version:

This TypeScript library is the main part of a more powerfull package designed for the fast WEB software development. The cornerstone of the library is the **DataStore** class, which might be useful when you need a full control of the data, but do not need

19 lines (18 loc) 704 B
export declare class Functions { private static _sysFunc; private static _userFunc; static registerSystemFunction(name: string, func: Function): void; static registerUserFunction(name: string, func: Function): void; static registerNamedUserFunction(func: Function): void; static registerSystemFunctions(funcs: { name: string; func: Function; }[]): void; static registerUserFunctions(funcs: { name: string; func: Function; }[]): void; static registerNamedUserFunctions(funcs: Function[]): void; static unregisterUserFunction(name: string): boolean; static getFunction(name: string): Function | undefined; }