lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
5 lines (4 loc) • 317 B
TypeScript
import { type Prompt, type Prettify } from '@inquirer/type';
type ViewFunction<Value, Config> = (config: Prettify<Config>, done: (value: Value) => void) => string | [string, string | undefined];
export declare function createPrompt<Value, Config>(view: ViewFunction<Value, Config>): Prompt<Value, Config>;
export {};