UNPKG

tyh-ui2

Version:

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

41 lines (40 loc) 1.23 kB
import { PropType } from 'vue'; import type { Align, columnsInterface } from './interface'; export declare const Props: { readonly data: { readonly type: PropType<unknown[]>; readonly default: () => any[]; }; readonly columns: { readonly type: PropType<columnsInterface[]>; readonly default: () => columnsInterface[]; }; readonly trHeight: { readonly type: StringConstructor; readonly default: () => string; }; readonly align: { readonly type: PropType<Align>; readonly default: () => Align; readonly validator: (v: Align) => boolean; }; readonly zebra: BooleanConstructor; readonly border: BooleanConstructor; readonly width: { readonly type: StringConstructor; readonly default: () => string; }; readonly height: { readonly type: StringConstructor; readonly default: () => string; }; readonly num: BooleanConstructor; readonly important: { readonly type: PropType<number[]>; readonly default: () => number[]; }; readonly importantColor: { readonly type: StringConstructor; readonly default: () => string; }; };