CEES-manage/types/utils.d.ts

6 lines
137 B
TypeScript
Raw Permalink Normal View History

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