frenic / csstype

Strict TypeScript and Flow types for style based on MDN data
MIT License
1.7k stars 69 forks source link

Add `break-spaces` property for the `white-space` CSS property #102

Open btford opened 3 years ago

btford commented 3 years ago

Looking at the currently generated types for the white-space CSS property, I noticed that break-spaces is missing:

export type WhiteSpaceProperty = Globals | "-moz-pre-wrap" | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap";