UNPKG

400 BTypeScriptView Raw
1import Vue from 'vue'
2
3declare type SizeType = null | '' | 'medium' | 'small' | 'mini'
4
5export declare class VXETableComponent extends Vue {
6 /**
7 * 尺寸
8 */
9 size?: SizeType;
10 vSize?: SizeType;
11
12 static install(vue: typeof Vue): void;
13}
14
15export interface RecordInfo {
16 [key: string]: any;
17}
18
19/**
20 * 行对象
21 */
22export interface RowInfo {
23 [key: string]: any;
24}