Repository URL to install this package:
Version:
0.14.1 ▾
|
import { ReactNode } from 'react'
import { AnimatedCardState } from 'presets/AnimatedExpandableCard'
export interface ApprovalRenderProps extends Function {
(props: ApprovalProps, state: AnimatedCardState): ReactNode
}
export interface ApprovalProps {
className?: string
children?: ReactNode
// renderProps
renderHeaderView?: ApprovalRenderProps
renderExpandableView?: ApprovalRenderProps
renderFooterView?: ApprovalRenderProps
}