UNPKG

564 BTypeScriptView Raw
1import { ComponentType } from 'react'
2import { StandardProps } from './common'
3type PickerViewColumnProps = StandardProps
4
5/** 滚动选择器子项
6 * 仅可放置于 `<PickerView />` 中,其孩子节点的高度会自动设置成与 picker-view 的选中框的高度一致
7 * @classification forms
8 * @supported weapp, swan, alipay, tt, h5, rn, harmony
9 * @see https://developers.weixin.qq.com/miniprogram/dev/component/picker-view-column.html
10 */
11declare const PickerViewColumn: ComponentType<StandardProps>
12export { PickerViewColumn, PickerViewColumnProps }