UNPKG

319 BTypeScriptView Raw
1import { LogStyle } from './interfaces';
2/**
3 * this function is not browser compatible*.
4 * @example ```ts
5 * console.log(styler('test', 'red'))
6 * ```
7 *
8 * *you have to add the styles manually, use the Log function for browser compatibly.
9 */
10export declare function styler(input: string, style?: LogStyle): string;