UNPKG

checkscripts

Version:

Inspired by Dan Slimmon's concept of "Do Nothing scripts", this project facilitates incremental automation of repetitive tasks.

10 lines 530 B
import { CheckscriptMode } from "./checkscript.js"; export declare function useFormat(mode: CheckscriptMode): { name: (name: string) => string; description: (description: string) => string; stepTitle: (stepNumber: number, name: string | null) => string; footer: (name: string) => string; }; export declare function withLoadingSpinner<T>(text: string, operation: () => Promise<T> | T): Promise<T>; export declare function withWaitForSpacebarPressed(text: string): Promise<void>; //# sourceMappingURL=output.d.ts.map