mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-22 08:38:08 +02:00
12 lines
250 B
TypeScript
12 lines
250 B
TypeScript
|
|
import { spinner } from '@clack/prompts';
|
||
|
|
|
||
|
|
export interface KloCliSpinner {
|
||
|
|
start(message: string): void;
|
||
|
|
stop(message: string): void;
|
||
|
|
error(message: string): void;
|
||
|
|
}
|
||
|
|
|
||
|
|
export function createClackSpinner(): KloCliSpinner {
|
||
|
|
return spinner();
|
||
|
|
}
|