UNPKG

@variantjs/vue

Version:

Vue VariantJS: Fully configurable Vue 3 components styled with TailwindCSS

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