UNPKG

bear-react-vertical-marquee

Version:

Most modern vertical marquee with hardware accelerated transitions for ReactJS

41 lines (40 loc) 916 B
/** * Primary (深藍) * @param title * @param watchData */ declare function primary(title: string, watchData?: any): void; /** * Success (綠色) * @param title * @param watchData */ declare function success(title: string, watchData?: any): void; /** * Info (天藍) * @param title * @param watchData */ declare function info(title: string, watchData?: any): void; /** * Warning (黃色) * @param title * @param watchData */ declare function warning(title: string, watchData?: any): void; /** * Danger (紅色) * @param title * @param watchData */ declare function danger(title: string, watchData?: any): void; declare function printInText(log: any, elseInfo?: boolean): void; declare const log: { primary: typeof primary; success: typeof success; info: typeof info; warning: typeof warning; danger: typeof danger; printInText: typeof printInText; }; export default log;