eslink-ui-plus
Version:
vue3 component library, css framework
30 lines (29 loc) • 916 B
TypeScript
import { PropType } from 'vue';
declare type tagType = 'success' | 'error' | 'warn' | 'normal';
declare const _default: import("vue").DefineComponent<{
styles: {
type: ObjectConstructor;
default: () => {};
};
type: {
type: PropType<tagType>;
default: string;
};
text: {
type: (StringConstructor | NumberConstructor)[];
default: string;
};
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
styles?: unknown;
type?: unknown;
text?: unknown;
} & {
styles: Record<string, any>;
type: tagType;
text: string | number;
} & {}>, {
styles: Record<string, any>;
type: tagType;
text: string | number;
}>;
export default _default;