Repository URL to install this package:
|
Version:
2.7.17 ▾
|
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
}