UNPKG

t-fighting-design

Version:

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

31 lines (30 loc) 1.31 kB
import type { LayoutDirectionType } from './src/interface.d'; import type { DefineComponent, PropType, Slot, ComponentOptions, ComputedOptions, MethodOptions, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue'; import type { InstallType } from '../_interface'; import Layout from "./src/layout"; export declare const FLayout: InstallType<DefineComponent<{ readonly direction: { readonly type: PropType<LayoutDirectionType>; readonly default: () => LayoutDirectionType; readonly validator: (val: LayoutDirectionType) => boolean; }; }, { prop: { readonly direction?: unknown; } & { direction: LayoutDirectionType; } & {}; slot: Readonly<{ [name: string]: Slot | undefined; }>; isVertical: ComponentOptions<boolean, any, any, ComputedOptions, MethodOptions, any, any, any>; }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{ readonly direction?: unknown; } & { direction: LayoutDirectionType; } & {}>, { direction: LayoutDirectionType; }>>; export declare type LayoutInstance = InstanceType<typeof Layout>; export * from './src/interface.d'; export default Layout;