UNPKG

t-fighting-design

Version:

Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.

35 lines (34 loc) 1.25 kB
import type { DefineComponent, PropType, ComputedRef, CSSProperties, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue'; import type { InstallType } from '../_interface'; import Aside from "./src/aside"; export declare const FAside: InstallType<DefineComponent<{ readonly width: { readonly type: PropType<string | number>; readonly default: () => string; }; readonly padding: { readonly type: PropType<string | number>; readonly default: () => number; }; }, { prop: { readonly width?: unknown; readonly padding?: unknown; } & { width: string | number; padding: string | number; } & {}; styleList: ComputedRef<CSSProperties>; }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{ readonly width?: unknown; readonly padding?: unknown; } & { width: string | number; padding: string | number; } & {}>, { width: string | number; padding: string | number; }>>; export declare type AsideInstance = InstanceType<typeof Aside>; export * from './src/interface.d'; export default Aside;