smartlog-destination-local/dist/beautylog.classes.ora.d.ts

15 lines
453 B
TypeScript

export declare let isOraActive: boolean;
export declare let activeOra: Ora;
export declare class Ora {
private _oraObject;
state: string;
constructor(textArg: string, colorArg: string, startArg?: boolean);
text(textArg: any): void;
start(textArg?: string, colorArg?: string): void;
end(): void;
endOk(textArg: any): void;
endError(textArg: any): void;
stop(): void;
log(logText: string, logType: string): void;
}