标签: typescript
在Typescript中,如果我有一个函数const foo = (input: string) => void,是否可以将其限制为仅字符串作为参数?意思是,我不希望任何人都能在参数中传递null或undefined。
const foo = (input: string) => void
null
undefined