UNPKG

@fe6/water-pro

Version:

An enterprise-class UI design language and Vue-based implementation

10 lines (6 loc) 217 B
/** @format */ import type { ComputedRef, Ref } from 'vue'; export type DynamicProps<T> = { [P in keyof T]: Ref<T[P]> | T[P] | ComputedRef<T[P]>; }; export const tuple = <T extends string[]>(...args: T) => args;