UNPKG

askeroo

Version:

A modern CLI prompt library with flow control, history navigation, and conditional prompts

11 lines 572 B
import type { Task, TaskLabel, TasksOptions, TaskStatus, TaskState, CompleteOn } from "./types.js"; export type { Task, TaskLabel, CompleteOn, TasksOptions, TaskStatus, TaskState, }; export declare function hasExistingTasks(): boolean; export declare function addDynamicTask(task: Task): Promise<void>; export declare function waitForPendingTasks(): Promise<void>; export declare const TasksDisplay: ({ node, options, events, }: { node: any; options: TasksOptions; events: any; }) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Tasks.d.ts.map