rtaro-ui
Version:
UI KIT for Taro
41 lines (22 loc) • 783 B
TypeScript
/* eslint-disable no-restricted-globals */
import { MouseEvent, ComponentClass } from 'react'
import { CommonEventFunction } from '@rtarojs/components/types/common'
import AtComponent from './base'
export interface AtFloatLayoutProps extends AtComponent {
maskClosable: boolean
visible: boolean
title?: string
scrollY?: boolean
scrollX?: boolean
scrollTop?: number
scrollLeft?: number
upperThreshold?: number
lowerThreshold?: number
scrollWithAnimation?: boolean
onClose?: CommonEventFunction
onScroll?: CommonEventFunction
onScrollToUpper?: CommonEventFunction
onScrollToLower?: CommonEventFunction
}
declare const AtFloatLayout: ComponentClass<AtFloatLayoutProps>
export default AtFloatLayout