elmer-ui-core
Version:
web app framework
10 lines (9 loc) • 528 B
TypeScript
export default class GlobalUtils {
isDev(): boolean;
}
export declare const defineGlobalState: (stateKey: string, stateValue: any, ignoreError?: boolean) => void;
export declare const getGlobalState: (stateKey: string) => any;
export declare const defineGlobalVar: (varKey: string, varValue: any) => void;
export declare const getGlobalVar: (varkey: string) => any;
export declare const addToClassPool: (className: string, factory: Function, fn?: Function) => void;
export declare const __extends: (d: any, b: any) => void;