export interface Font { fontFamily?: string; fontSize?: string; fontWeight?: string; letterSpacing?: string; textTransform?: 'none' | 'capitalize' | 'uppercase' | 'lowercase' | 'full-width' | 'full-size-kana'; } declare module './view.js' { interface View { font: (font: Font) => View; } }