wms-naivevue/types/utils.d.ts

6 lines
137 B
TypeScript
Raw Permalink Normal View History

2024-11-07 16:35:04 +08:00
import type { ComputedRef, Ref } from 'vue';
export type DynamicProps<T> = {
[P in keyof T]: Ref<T[P]> | T[P] | ComputedRef<T[P]>;
};