我在 TypeScript 中使用Chalk NPM 包。如果我动态设置粉笔的颜色,则会收到 TS 错误。我可以使用类型断言,chalk[color] as Chalk
但如果可能的话,我更喜欢使用类型谓词,这需要我能够访问支持的颜色列表。
那么,有没有一种方法可以访问 Chalk 中支持的颜色列表,或者另一种方法来解决这个问题,而不使用类型断言,并且可能使用类型谓词?
可能需要启用in中的strict
选项,以显示错误。compilerOptions
tsconfig.json
代码如下,错误在评论中:
import chalk from 'chalk';
function getColor(): string {
return 'blue';
}
const color = getColor();
/**
* Element implicitly has an 'any' type because expression of type 'string'
* can't be used to index type 'Chalk & { supportsColor: ColorSupport; }'.
*
* No index signature with a parameter of type 'string' was found on type 'Chalk
* & { supportsColor: ColorSupport; }'.ts(7053)
*/
console.log(chalk[color]('test'));