UNPKG

507 BTypeScriptView Raw
1import { ComponentType } from 'react'
2import { StandardProps } from './common'
3interface ListViewProps extends StandardProps {}
4
5/**
6 * 列表布局容器,仅支持作为 scroll-view 自定义模式下的直接子节点或 sticky-section 组件直接子节点。仅 Skyline 支持。
7 * @classification skyline
8 * @supported weapp
9 * @see https://developers.weixin.qq.com/miniprogram/dev/component/list-view.html
10 */
11declare const ListView: ComponentType<ListViewProps>
12export { ListView, ListViewProps }