UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

4 lines (3 loc) 254 B
import type { Prompter } from "./prompter.js"; /** Runs asynchronous work behind an optional spinner that always stops. */ export declare function withSpinner<T>(prompter: Prompter, message: string, task: () => Promise<T>, delayMs?: number): Promise<T>;