jeecg-boot-vue3/types/utils.d.ts

6 lines
137 B
TypeScript
Raw Normal View History

2021-10-20 06:32:09 +00:00
import type { ComputedRef, Ref } from 'vue';
export type DynamicProps<T> = {
[P in keyof T]: Ref<T[P]> | T[P] | ComputedRef<T[P]>;
};