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.
24 lines
2.3 KiB
24 lines
2.3 KiB
|
2 years ago
|
import type { ExtractPropTypes } from 'vue';
|
||
|
|
import type Col from './col.vue';
|
||
|
|
export declare type ColSizeObject = {
|
||
|
|
span?: number;
|
||
|
|
offset?: number;
|
||
|
|
pull?: number;
|
||
|
|
push?: number;
|
||
|
|
};
|
||
|
|
export declare type ColSize = number | ColSizeObject;
|
||
|
|
export declare const colProps: {
|
||
|
|
readonly tag: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "div", boolean>;
|
||
|
|
readonly span: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 24, boolean>;
|
||
|
|
readonly offset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
||
|
|
readonly pull: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
||
|
|
readonly push: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
||
|
|
readonly xs: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => ColSize & {}) | (() => ColSize) | ((new (...args: any[]) => ColSize & {}) | (() => ColSize))[], unknown, unknown, () => import("element-plus/es/utils").Mutable<{}>, boolean>;
|
||
|
|
readonly sm: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => ColSize & {}) | (() => ColSize) | ((new (...args: any[]) => ColSize & {}) | (() => ColSize))[], unknown, unknown, () => import("element-plus/es/utils").Mutable<{}>, boolean>;
|
||
|
|
readonly md: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => ColSize & {}) | (() => ColSize) | ((new (...args: any[]) => ColSize & {}) | (() => ColSize))[], unknown, unknown, () => import("element-plus/es/utils").Mutable<{}>, boolean>;
|
||
|
|
readonly lg: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => ColSize & {}) | (() => ColSize) | ((new (...args: any[]) => ColSize & {}) | (() => ColSize))[], unknown, unknown, () => import("element-plus/es/utils").Mutable<{}>, boolean>;
|
||
|
|
readonly xl: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => ColSize & {}) | (() => ColSize) | ((new (...args: any[]) => ColSize & {}) | (() => ColSize))[], unknown, unknown, () => import("element-plus/es/utils").Mutable<{}>, boolean>;
|
||
|
|
};
|
||
|
|
export declare type ColProps = ExtractPropTypes<typeof colProps>;
|
||
|
|
export declare type ColInstance = InstanceType<typeof Col>;
|