all the primitive types are quoted, i.e. "string" and "number" instead of string and number. see open-props.d.ts.
props.animations.js only contains kebab-case properties but props.animations.d.ts contains both kebab and camel case. same problem applies to all files in src/ directory
Found a few issues in typings when testing 1.5.4:
"string"
and"number"
instead ofstring
andnumber
. seeopen-props.d.ts
.props.animations.js
only contains kebab-case properties butprops.animations.d.ts
contains both kebab and camel case. same problem applies to all files insrc/
directoryprops.colors.js
contains individual and combined objects for colors.props.colors.d.ts
only contains combined.all of these could be fixed by using
tsc
instead of generating types by hand 🤔