UNPKG

@maxpike/vue

Version:

Vue VariantJS: Fully configurable Vue 3 components styled with TailwindCSS

6 lines (3 loc) 203 B
type ObjectWithProperties<P> = Record<string | number | symbol, P>; type KeysOfType<T, TProp> = { [P in keyof T]: T[P] extends TProp? P : never }[keyof T]; export { ObjectWithProperties, KeysOfType };