utils.d.ts 137 B

123456
  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. };