UNPKG

tyh-ui2

Version:

The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.

35 lines (34 loc) 1.15 kB
import type { Position } from './interface'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue'; declare const _sfc_main: DefineComponent<{ readonly position: { readonly type: PropType<Position>; readonly default: () => Position; readonly validator: (v: Position) => boolean; }; readonly color: { readonly type: StringConstructor; readonly default: () => string; }; readonly margin: { readonly type: StringConstructor; readonly default: () => string; }; readonly icon: StringConstructor; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{ readonly position?: unknown; readonly color?: unknown; readonly margin?: unknown; readonly icon?: unknown; } & { position: Position; color: string; margin: string; } & { icon?: string | undefined; }>, { position: Position; color: string; margin: string; }>; export default _sfc_main;