UNPKG

@seemusic/ui-components

Version:

A Vue 3 UI Library. Uses Composable.

37 lines (36 loc) 1.1 kB
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; export type StatusTypeEnum = 'primary' | 'warning' | 'info' | 'danger' | 'all' | 'success'; declare const _default: DefineComponent<{ type: { type: StringConstructor; default: string; validator(value: string): boolean; }; color: { type: StringConstructor; default: string; }; text: { type: StringConstructor; default: string; }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{ type: { type: StringConstructor; default: string; validator(value: string): boolean; }; color: { type: StringConstructor; default: string; }; text: { type: StringConstructor; default: string; }; }>>, { type: string; text: string; color: string; }, {}>; export default _default;