UNPKG

@zebra-ui/swiper

Version:

专为多端设计的高性能swiper轮播组件库,支持多种复杂的 3D swiper轮播效果。

19 lines (15 loc) 391 B
import type { ComputedRef, Ref } from 'vue' export interface ParentProvide { link: (child: any) => void unlink: (child: any) => void children: any[] internalChildren: any[] [key: string]: any } export interface UseParentReturn { parent: ParentProvide | null index: ComputedRef<number> | Ref<number> } export interface UseParent { (key: symbol | string): UseParentReturn }