Is your feature request related to a problem?
const { question } = await prompts({
type: 'text',
name: 'question',
message: 'what do you want to ask?'
})
question is incorrectly typed as any instead of string
Describe the solution you'd like
Better return types
Describe alternatives you've considered
const { question }: { question: string} = await prompts({
type: 'text',
name: 'question',
message: 'what do you want to ask?'
})
Additional context

Is your feature request related to a problem?
questionis incorrectly typed as any instead ofstringDescribe the solution you'd like
Better return types
Describe alternatives you've considered
Additional context