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

13 lines
377 B
TypeScript
Raw Normal View History

2016-05-13 23:18:44 +00:00
export declare class Ora {
private _oraObject;
state: string;
constructor(textArg: string, colorArg: string, startArg?: boolean);
2016-05-13 23:18:44 +00:00
text(textArg: any): void;
2016-05-14 15:51:35 +00:00
start(textArg?: string, colorArg?: string): void;
2016-05-13 23:18:44 +00:00
end(): void;
endOk(textArg: any): void;
endError(textArg: any): void;
stop(): void;
log(logText: string, logType: string): void;
2016-05-13 23:18:44 +00:00
}