UNPKG

vexip-ui

Version:

A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good

43 lines (42 loc) 1.94 kB
import { FullScreenSlotParams, FullScreenType } from './symbol'; declare function enter(type?: FullScreenType, customZIndex?: number): Promise<void>; declare function exit(): Promise<void>; declare function toggle(type?: FullScreenType, zIndex?: number): Promise<void>; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ default: (params: FullScreenSlotParams) => any; }> & { default: (params: FullScreenSlotParams) => any; }; refs: { wrapper: unknown; }; rootEl: any; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ inherit: import('vue').PropType<boolean>; tag: import('vue').PropType<string>; onToggle: import('vue').PropType<((full: false | FullScreenType) => void) | ((full: false | FullScreenType) => void)[]>; }>, { full: import('vue').ComputedRef<false | FullScreenType>; placeId: Readonly<import('vue').Ref<any, any>>; wrapper: import('vue').Ref<import('@vexip-ui/hooks').MaybeInstance, import('@vexip-ui/hooks').MaybeInstance>; enter: typeof enter; exit: typeof exit; toggle: typeof toggle; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{ inherit: import('vue').PropType<boolean>; tag: import('vue').PropType<string>; onToggle: import('vue').PropType<((full: false | FullScreenType) => void) | ((full: false | FullScreenType) => void)[]>; }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, { wrapper: unknown; }, any>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };