@qvant/qui-max
Version:
A Vue 3 Design system for Web.
40 lines (39 loc) • 1.48 kB
TypeScript
import type { QColInstance } from './src/types';
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
import type { SFCWithInstall, Nullable } from '../../../types/helpers';
export declare const QCol: SFCWithInstall<DefineComponent<{
tag: {
type: StringConstructor;
default: string;
};
cols: {
type: (StringConstructor | NumberConstructor)[];
default: null;
validator: (value: Nullable<string | number>) => boolean;
};
offset: {
type: (StringConstructor | NumberConstructor)[];
default: null;
validator: (value: Nullable<string | number>) => boolean;
};
}, QColInstance, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
tag: {
type: StringConstructor;
default: string;
};
cols: {
type: (StringConstructor | NumberConstructor)[];
default: null;
validator: (value: Nullable<string | number>) => boolean;
};
offset: {
type: (StringConstructor | NumberConstructor)[];
default: null;
validator: (value: Nullable<string | number>) => boolean;
};
}>>, {
tag: string;
cols: string | number;
offset: string | number;
}>>;
export type { QColProps, QColInstance } from './src/types';