Skip to content

Commit

Permalink
api update
Browse files Browse the repository at this point in the history
  • Loading branch information
Amplifiyer committed Dec 3, 2024
1 parent 1f75eb7 commit 4a57977
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/cli-core/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ import { WriteStream } from 'node:tty';
export class AmplifyPrompter {
static input: (options: {
message: string;
required?: never;
defaultValue?: string;
}) => Promise<string>;
static requiredInput: (options: {
} | {
message: string;
required: true;
defaultValue?: never;
}) => Promise<string>;
static secretValue: (promptMessage?: string) => Promise<string>;
static yesOrNo: (options: {
Expand Down

0 comments on commit 4a57977

Please sign in to comment.