UNPKG

tyh-ui2

Version:

The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.

13 lines (12 loc) 365 B
import { PropType, CSSProperties } from 'vue'; import type { Shadow } from './interface'; export declare const Props: { readonly shadow: { readonly type: PropType<Shadow>; readonly validator: (v: Shadow) => boolean; }; readonly bodyStyle: { readonly type: PropType<CSSProperties>; readonly default: () => null; }; };