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
25
26
27
28
29
import { AllowedComponentProps, VNodeProps } from './_common'
 
// ****************************** Props ******************************
declare interface ZPagingCellProps {
  /**
   * z-paging-cell样式
   */
  cellStyle?: Record<string, any>
}
 
// ****************************** Slots ******************************
declare interface ZPagingCellSlots {
  // ******************** 主体布局Slot ********************
  /**
   * 默认插入的view
   */
  ['default']?: () => any
}
 
declare interface _ZPagingCell {
  new (): {
    $props: AllowedComponentProps &
      VNodeProps &
      ZPagingCellProps
    $slots: ZPagingCellSlots
  }
}
 
export declare const ZPagingCell: _ZPagingCell