unity-find-fault
Version:
A tool to find fault in unity project.
20 lines (19 loc) • 478 B
TypeScript
export declare class Status {
private static instance;
static get Instance(): Status;
private spinner;
private taskName;
private stage;
private crtCnt;
private total;
private startAt;
private errors;
startTask(name: string, total: number): void;
reset(stage?: string): void;
update(info: string): void;
end(): void;
private get title();
emptyErrors(): void;
collect(error: string): void;
dumpErrors(): void;
}