Interface FormatProps

interface FormatProps {
    args: any[];
    color: ((v: string) => string);
    label?: string;
    level:
        | "error"
        | "debug"
        | "info"
        | "warn";
    time: string;
}

Properties

args: any[]
color: ((v: string) => string)
label?: string
level:
    | "error"
    | "debug"
    | "info"
    | "warn"
time: string