wms-antdvue/.svn/pristine/8f/8f41b2fe389ad8e04314cb706dfd6ef76fec3b2a.svn-base
2024-11-07 16:33:03 +08:00

6 lines
137 B
Plaintext

import type { ComputedRef, Ref } from 'vue';
export type DynamicProps<T> = {
[P in keyof T]: Ref<T[P]> | T[P] | ComputedRef<T[P]>;
};