UNPKG

683 BTypeScriptView Raw
1import { ComponentType } from 'react'
2import { StandardProps, CommonEventFunction } from './common'
3
4interface NestedScrollBodyProps extends StandardProps {}
5
6/**
7 * 嵌套 scroll-view 场景中属于里层 scroll-view 的节点,
8 * 仅支持作为 `<scroll-view type="nested">` 模式的直接子节点。
9 * 不支持复数子节点,渲染时会取其第一个子节点来渲染。具体用法可参考 scroll-view
10 * @classification skyline
11 * @supported weapp
12 * @see https://developers.weixin.qq.com/miniprogram/dev/component/nested-scroll-body.html
13 */
14declare const NestedScrollBody: ComponentType<NestedScrollBodyProps>
15export { NestedScrollBody, NestedScrollBodyProps }