@qvant/qui-max
Version:
A Vue 3 Design system for Web.
20 lines (19 loc) • 820 B
TypeScript
import type { QTagInstance } from './src/types';
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
import type { SFCWithInstall } from '../../../types/helpers';
export declare const QTag: SFCWithInstall<DefineComponent<{
closable: {
type: BooleanConstructor;
default: boolean;
};
}, QTagInstance, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "close"[], "close", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
closable: {
type: BooleanConstructor;
default: boolean;
};
}>> & {
onClose?: ((...args: any[]) => any) | undefined;
}, {
closable: boolean;
}>>;
export type { QTagProps, QTagInstance } from './src/types';