react-common-use-components
Version:
A React mobile commonly used component library
6 lines (5 loc) • 338 B
TypeScript
export declare const generateRandomNumber: () => number;
export declare function isFunction(value: Function): boolean;
export declare const debounce: (func: () => void, wait: number) => (...args: any) => void;
export declare const range: (number: number) => number[];
export declare function getPlatform(): "iOS" | "Android" | "Unknown";