UNPKG

619 BTypeScriptView Raw
1import { ComponentType } from 'react'
2import { StandardProps } from './common'
3interface StickySectionProps extends StandardProps {
4 /** 吸顶元素重叠时是否继续上推
5 * @supported weapp
6 * @default true
7 */
8 pushPinnedHeader?: boolean
9}
10/**
11 * 吸顶布局容器,仅支持作为 scroll-view 自定义模式下的直接子节点。仅 Skyline 支持。
12 * @classification skyline
13 * @supported weapp
14 * @see https://developers.weixin.qq.com/miniprogram/dev/component/sticky-section.html
15 */
16declare const StickySection: ComponentType<StickySectionProps>
17export { StickySection, StickySectionProps }