[READ-ONLY] Mirror of https://github.com/bombshell-dev/clack. Effortlessly build beautiful command-line apps bomb.sh/docs/clack/basics/getting-started/
cli command-line command-line-app node prompt prompts
5

Configure Feed

Select the types of activity you want to include in your feed.

chore: order exports

Nate Moore (Feb 17, 2023, 5:26 AM -0600) 44e67026 875bdd2c

+5 -3
+5 -3
packages/core/src/index.ts
··· 1 + export type { State } from './prompts/prompt'; 2 + 3 + export { default as Prompt, isCancel } from './prompts/prompt'; 4 + export { default as TextPrompt } from './prompts/text'; 1 5 export { default as ConfirmPrompt } from './prompts/confirm'; 2 6 export { default as MultiSelectPrompt } from './prompts/multi-select'; 3 7 export { default as PasswordPrompt } from './prompts/password'; 4 - export { default as Prompt, isCancel } from './prompts/prompt'; 5 - export type { State } from './prompts/prompt'; 6 8 export { default as SelectPrompt } from './prompts/select'; 7 - export { default as TextPrompt } from './prompts/text'; 9 + 8 10 export { block } from './utils';