vue3-unicorn-log
Version:
A magical 🦄 plugin to make coloring the console output easier and more flexible.
20 lines (19 loc) • 452 B
TypeScript
export interface OptionsSettings {
array?: string[] | number[];
defaultStyles?: object;
disabled?: boolean;
globalOptions?: boolean;
logOutput?: string[];
logPrefix?: boolean | string;
magical?: boolean;
name?: string;
objects?: object;
styles?: string;
text?: string;
type?: string;
}
export interface DefaultStyles {
goNuts?: string[];
info?: string[];
log?: string[];
}