对于这样的配置文件,我有一个非常基本的文件夹结构:
/config
/button
/colors
/index
代码如下:
colors.ts
export interface Colors {
[key: string]: string,
}
export default {
black: '#111',
grey: '#999',
green: '#4c8857',
red: '#bd1414',
white: '#fff',
};
索引
import colors from './colors';
export default {
button,
colors,
};
我收到以下错误:
Could not find a declaration file for module './colors'. '/xxxxx/styles/config/colors.js' implicitly has an 'any' type.
我是Typescript的新手,在网上找不到任何可以清楚说明我做错了什么的教程或示例。
狐的传说
潇湘沐
随时随地看视频慕课网APP
相关分类