UNPKG

@fe6/water-pro

Version:

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

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