CSSType CSS的TypeScript和Flow定义,由的生成。 它为CSS属性和值提供自动补全和类型检查。 打字稿 import * as CSS from 'csstype' ; const style : CSS . Properties = { colour : 'white' , // Type error on property textAlign : 'middle' , // Type error on value } ; 流 // @flow strict import * as CSS from 'csstype' ; const style : CSS