@gizwits/vantui
Version:
机智云组件库
16 lines (14 loc) • 404 B
TypeScript
import { ViewProps } from '@tarojs/components'
import { FunctionComponent, ReactNode } from 'react'
export interface OverlayProps extends ViewProps {
show?: boolean
lockScroll?: boolean
zIndex?: number
duration?:
| string
| number
| { enter: string | number; leave: string | number }
children?: ReactNode
}
declare const Overlay: FunctionComponent<OverlayProps>
export { Overlay }