fei.wang
2025-04-30 722da005a5ec126bedf752ac6bd5c5c7f6172155
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']