@vuesax-alpha/nightly
Version:
A Component Library for Vue 3
23 lines (22 loc) • 2.21 kB
TypeScript
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 span: import("vuesax-alpha/es/utils").VsPropFinalized<NumberConstructor, unknown, unknown, 12, boolean>;
readonly offset: import("vuesax-alpha/es/utils").VsPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
readonly pull: import("vuesax-alpha/es/utils").VsPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
readonly push: import("vuesax-alpha/es/utils").VsPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
readonly xs: import("vuesax-alpha/es/utils").VsPropFinalized<(new (...args: any[]) => ColSize & {}) | (() => ColSize) | ((new (...args: any[]) => ColSize & {}) | (() => ColSize))[], unknown, unknown, () => import("vuesax-alpha/es/utils").Mutable<{}>, boolean>;
readonly sm: import("vuesax-alpha/es/utils").VsPropFinalized<(new (...args: any[]) => ColSize & {}) | (() => ColSize) | ((new (...args: any[]) => ColSize & {}) | (() => ColSize))[], unknown, unknown, () => import("vuesax-alpha/es/utils").Mutable<{}>, boolean>;
readonly md: import("vuesax-alpha/es/utils").VsPropFinalized<(new (...args: any[]) => ColSize & {}) | (() => ColSize) | ((new (...args: any[]) => ColSize & {}) | (() => ColSize))[], unknown, unknown, () => import("vuesax-alpha/es/utils").Mutable<{}>, boolean>;
readonly lg: import("vuesax-alpha/es/utils").VsPropFinalized<(new (...args: any[]) => ColSize & {}) | (() => ColSize) | ((new (...args: any[]) => ColSize & {}) | (() => ColSize))[], unknown, unknown, () => import("vuesax-alpha/es/utils").Mutable<{}>, boolean>;
readonly xl: import("vuesax-alpha/es/utils").VsPropFinalized<(new (...args: any[]) => ColSize & {}) | (() => ColSize) | ((new (...args: any[]) => ColSize & {}) | (() => ColSize))[], unknown, unknown, () => import("vuesax-alpha/es/utils").Mutable<{}>, boolean>;
};
export declare type ColProps = ExtractPropTypes<typeof colProps>;
export declare type ColInstance = InstanceType<typeof Col>;