我有一个模块可以根据我的特定需求修补chalk
颜色。这是代码:
import { ChalkStyleElement, ChalkStyleMap, styles } from 'chalk';
import escape from './escape';
/**
* Decorate ASCII-colors with shell-specific escapes
*/
let PatchedChalkStyleMap: ChalkStyleMap;
Object.keys(styles).forEach((style: string) => {
PatchedChalkStyleMap[style] = {
close: escape(styles[style].close),
open: escape(styles[style].open),
reset: escape(styles[style].reset),
};
});
上面我只是浏览了所有chalk
个样式,并使用我的特殊escape
函数修补它们。但是,这不会编译。我收到这些错误:
src/colors.ts(10,3): error TS7017: Element implicitly has an 'any' type because type 'ChalkStyleMap' has no index signature.
src/colors.ts(11,16): error TS7017: Element implicitly has an 'any' type because type 'ChalkStyleMap' has no index signature.
src/colors.ts(12,15): error TS7017: Element implicitly has an 'any' type because type 'ChalkStyleMap' has no index signature.
src/colors.ts(13,16): error TS7017: Element implicitly has an 'any' type because type 'ChalkStyleMap' has no index signature
另外,我应该说我在"noImplicitAny"
中启用了tsconfig.json
个选项。
如何正确描述类型,而不是隐式any
?
答案 0 :(得分:-1)
您可以扩充ChalkStyleMap
接口以添加索引签名:
declare module "chalk" {
interface ChalkStyleMap {
[key: string]: ChalkStyleElement
}
}
如果您不想修改ChalkStyleMap
界面,可以将ChalkStyleMap
扩展到自定义界面,但是在使用styles
的任何地方都必须使用类型断言来确保编译器不会抛出错误:
interface YourChalkStyleMap extends ChalkStyleMap {
[key: string]: ChalkStyleElement
}
let PatchedChalkStyleMap: YourChalkStyleMap;