interface Logger {
    clear_logs: (() => void);
    export_logs: (() => string);
    id: string;
    (...args: any[]): void;
}
  • Parameters

    • Rest...args: any[]

    Returns void

Properties

clear_logs: (() => void)
export_logs: (() => string)
id: string