[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: omit group results current key

Bruno Rocha (Mar 9, 2023, 11:49 AM -0300) e6781f1f ac7d1e1d

+1 -1
+1 -1
packages/prompts/src/index.ts
··· 666 666 667 667 export type PromptGroup<T> = { 668 668 [P in keyof T]: (opts: { 669 - results: Prettify<Partial<PromptGroupAwaitedReturn<T>>>; 669 + results: Prettify<Partial<PromptGroupAwaitedReturn<Omit<T, P>>>>; 670 670 }) => void | Promise<T[P] | void>; 671 671 }; 672 672