prism-logger
Version:
beautified logging in nodejs
37 lines (36 loc) • 772 B
TypeScript
interface Options {
reset: string;
bright: string;
dim: string;
underscore: string;
blink: string;
reverse: string;
hidden: string;
fg: {
black: string;
red: string;
green: string;
yellow: string;
blue: string;
magenta: string;
cyan: string;
white: string;
gray: string;
[key: string]: string;
};
bg: {
black: string;
red: string;
green: string;
yellow: string;
blue: string;
magenta: string;
cyan: string;
white: string;
gray: string;
[key: string]: string;
};
}
export declare const option: Options;
export type text = boolean | string | object | number;
export {};