mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-01 18:17:46 +00:00
6 lines
134 B
TypeScript
6 lines
134 B
TypeScript
import type { ComputedRef, Ref } from 'vue'
|
|
|
|
export type DynamicProps<T> = {
|
|
[P in keyof T]: Ref<T[P]> | T[P] | ComputedRef<T[P]>
|
|
}
|