fei.wang
2025-04-16 36125140602fc90ddad1cbd8cc82f88872fab9a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/// <reference path="./comps.d.ts" />
declare module 'z-paging' {
  export function install() : void
  /**
   * z-paging全局配置
   * - uni.$zp
   *
   * @since 2.6.5
   */
  interface $zp {
    /**
     * 全局配置
     */
    config : Record<string, any>;
  }
  global {
    interface Uni {
      $zp : $zp
    }
  }
}
 
declare type ZPagingSwiperRef = typeof import('./comps/z-paging-swiper')['ZPagingSwiperRef']
declare type ZPagingSwiperItemRef = typeof import('./comps/z-paging-swiper-item')['ZPagingSwiperItemRef']