@nomyx/assistant
Version:
A powerful assistant library and cli for your AI projects. works with Vertex AI (Claude and Gemini)
13 lines (12 loc) • 331 B
TypeScript
export declare class Spinner {
spinnerTypes: string[][];
currentCharIndex: number;
interval: NodeJS.Timeout | null;
spinnerChars: string[];
currentTypeIndex: number;
constructor();
start(message?: string): void;
stop(): void;
succeed(message?: string): void;
fail(message?: string): void;
}