Repository URL to install this package:
|
Version:
2.6.18 ▾
|
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;
renderHeaderView?: ApprovalRenderProps;
renderExpandableView?: ApprovalRenderProps;
renderFooterView?: ApprovalRenderProps;
}