You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.4 KiB
54 lines
1.4 KiB
import type { PropType } from 'vue';
|
|
import type { ComponentSize } from 'element-plus/es/utils/types';
|
|
declare const _default: import("vue").DefineComponent<{
|
|
border: {
|
|
type: BooleanConstructor;
|
|
default: boolean;
|
|
};
|
|
column: {
|
|
type: NumberConstructor;
|
|
default: number;
|
|
};
|
|
direction: {
|
|
type: PropType<"horizontal" | "vertical">;
|
|
default: string;
|
|
};
|
|
size: {
|
|
type: PropType<ComponentSize>;
|
|
validator: (val: string) => boolean;
|
|
};
|
|
title: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
extra: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
}, {
|
|
descriptionKls: import("vue").ComputedRef<string[]>;
|
|
getRows: () => never[];
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
border?: unknown;
|
|
column?: unknown;
|
|
direction?: unknown;
|
|
size?: unknown;
|
|
title?: unknown;
|
|
extra?: unknown;
|
|
} & {
|
|
title: string;
|
|
column: number;
|
|
border: boolean;
|
|
direction: "horizontal" | "vertical";
|
|
extra: string;
|
|
} & {
|
|
size?: ComponentSize | undefined;
|
|
}>, {
|
|
title: string;
|
|
column: number;
|
|
border: boolean;
|
|
direction: "horizontal" | "vertical";
|
|
extra: string;
|
|
}>;
|
|
export default _default;
|