[READ-ONLY] Mirror of https://github.com/bombshell-dev/docs. bomb.sh/docs
0

Configure Feed

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

fix: twoslash expect error (#46)

authored by

Felix Schneider and committed by
GitHub
(May 28, 2026, 3:21 PM EDT) ea24f71d a6f704e6

+2 -1
+2 -1
src/content/docs/clack/guides/best-practices.mdx
··· 57 57 58 58 ```ts twoslash 59 59 import { text } from '@clack/prompts'; 60 + // @errors: 2322 60 61 import { type } from 'arktype'; 61 62 62 63 const name = await text({ ··· 415 416 // Use the reusable function 416 417 const serverPort = await promptForPort('3000'); 417 418 const dbPort = await promptForPort('5432'); 418 - ``` 419 + ```