comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
12 lines (11 loc) • 302 B
TypeScript
declare function start(): void;
declare function finish(): void;
declare function error(): void;
declare function update(value: any): void;
declare const CuLoadingbar: {
start: typeof start;
finish: typeof finish;
error: typeof error;
update: typeof update;
};
export { CuLoadingbar };