lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
18 lines (17 loc) • 585 B
TypeScript
import { Separator, type Theme } from '@inquirer/core';
import type { PartialDeep } from '@inquirer/type';
type Choice<Value> = {
value: Value;
name?: string;
short?: string;
key?: string;
};
declare const _default: <Value>(config: {
message: string;
choices: readonly (Separator | Value | Choice<Value>)[];
loop?: boolean | undefined;
theme?: PartialDeep<Theme> | undefined;
default?: NoInfer<Value> | undefined;
}, context?: import("@inquirer/type").Context) => Promise<Value>;
export default _default;
export { Separator } from '@inquirer/core';