@es-react/react
Version:
Hippy react framework
18 lines (17 loc) • 1.07 kB
TypeScript
declare function trace(...context: any[]): void;
declare function warn(...context: any[]): void;
declare function unicodeToChar(text: string): string;
declare function isCaptureEvent(eventName: any): boolean;
declare function hasTargetEvent(key: string, events: object | undefined): boolean;
declare function tryConvertNumber(input: any): any;
declare function isFunction(input: any): boolean;
declare function isNumber(input: string): boolean;
declare function setSilent(silentArg: boolean): void;
declare function isDev(): boolean;
declare function isTraceEnabled(): boolean;
declare function setBubbles(bubbles?: boolean): void;
declare function isGlobalBubble(): boolean;
declare function convertImgUrl(url: string): string;
declare function isHostComponent(tag: number): tag is 5;
declare function deepCopy(data: any, hash?: WeakMap<WeakKey, any>): any;
export { trace, warn, unicodeToChar, tryConvertNumber, isDev, isCaptureEvent, hasTargetEvent, isFunction, isNumber, setSilent, isTraceEnabled, setBubbles, isGlobalBubble, convertImgUrl, isHostComponent, deepCopy, };