aico-pack
Version:
A tool to pack repository contents to single file for AI consumption
15 lines • 458 B
TypeScript
import type { CliOptions } from './types.js';
export declare class Spinner {
private spinner;
private message;
private currentFrame;
private interval;
private readonly isQuiet;
constructor(message: string, cliOptions: CliOptions);
start(): void;
update(message: string): void;
stop(finalMessage: string): void;
succeed(message: string): void;
fail(message: string): void;
}
//# sourceMappingURL=cliSpinner.d.ts.map