utils.d.ts 134 B

12345
  1. import type { ComputedRef, Ref } from 'vue'
  2. export type DynamicProps<T> = {
  3. [P in keyof T]: Ref<T[P]> | T[P] | ComputedRef<T[P]>
  4. }