astro-ghostcms/.pnpm-store/v3/files/56/bf730f5f2e7ba000c282af5be76...

11 lines
319 B
Plaintext

import { LogStyle } from './interfaces';
/**
* this function is not browser compatible*.
* @example ```ts
* console.log(styler('test', 'red'))
* ```
*
* *you have to add the styles manually, use the Log function for browser compatibly.
*/
export declare function styler(input: string, style?: LogStyle): string;