[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.

wip: loosen component type

James Garbutt (Jul 13, 2025, 1:57 PM +0100) 0f61366c 36e756b7

+1 -7
+1 -7
packages/jsx/src/index.ts
··· 34 34 }; 35 35 } 36 36 37 - export type Component = 38 - | typeof Confirm 39 - | typeof Note 40 - | typeof Text 41 - | typeof Password 42 - | typeof Option 43 - | typeof Select; 37 + export type Component = (props: never) => JSX.Element; 44 38 45 39 function jsx<T extends keyof JSX.IntrinsicElements>( 46 40 tag: T,