@lsk4/log
Version:
Yet another logger whitch combines the best features of debug, bunyan, logfmt/logrus, morgan/winston
9 lines (6 loc) • 364 B
TypeScript
import { ThemeKey } from './types.js';
import '@lsk4/colors';
declare function themeizeRandom(str: string, randomName?: string | number | null): string;
declare function themeize(str: string, themeKey?: ThemeKey | null): string;
declare function themeizeLight(str: string, themeKey?: ThemeKey | null): string;
export { themeize, themeizeLight, themeizeRandom };