Skip to content

NormalizedChoice

@tsed/cli-prompts

Usage

typescript
import { NormalizedChoice } from "@tsed/cli-prompts/src/utils/normalizeChoices";

See /packages/cli-prompts/src/utils/normalizeChoices.ts.

Overview

ts
type NormalizedChoice<Value = any> = Option<Value> & {
    checked?: boolean;
};

checked

ts
checked?: boolean;

Released under the MIT License.