1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import type { CSSProperties } from 'vue';
import type { Column, KeyType } from './types';
export declare type AnyColumn = Column<any>;
/**
* @Note even though we can use `string[] | string` as the type but for
* convenience here we only use `string` as the acceptable value here.
*/
export declare const classType: StringConstructor;
export declare const columns: {
readonly type: import("vue").PropType<AnyColumn[]>;
readonly required: true;
};
export declare const column: {
readonly type: import("vue").PropType<AnyColumn>;
};
export declare const fixedDataType: {
readonly type: import("vue").PropType<any[]>;
};
export declare const dataType: {
readonly required: true;
readonly type: import("vue").PropType<any[]>;
};
export declare const expandColumnKey: StringConstructor;
export declare const expandKeys: {
readonly type: import("vue").PropType<KeyType[]>;
readonly default: () => never[];
};
export declare const requiredNumber: {
readonly type: NumberConstructor;
readonly required: true;
};
export declare const rowKey: {
readonly type: import("vue").PropType<KeyType>;
readonly default: "id";
};
/**
* @note even though we can use `StyleValue` but that would be difficult for us to mapping them,
* so we only use `CSSProperties` as the acceptable value here.
*/
export declare const styleType: {
type: import("vue").PropType<CSSProperties>;
};