Repository URL to install this package:
|
Version:
2.1.16 ▾
|
import { ApprovalStatusProps as ApprovalStatusPlaceholderProps, ApprovalStatusRenderprop } from 'abstractions/B2B/Approval';
import { DetailedListProps } from '@skava/ui/dist/components/molecules/DetailedList';
interface HandleArgs {
event: Event;
}
interface ChangeEvent extends Function {
(args?: HandleArgs): void;
}
export interface UserNameProps {
label: string;
value: string;
}
export interface ItemProps {
userIdLabel?: string;
userIdValue?: string;
userName?: UserNameProps;
dateRequestedLabel?: string;
dateRequestedValue?: string;
userInformation?: DetailedListProps;
statusInformation?: DetailedListProps;
}
export interface ApprovalStatusProps extends ApprovalStatusPlaceholderProps {
renderIconItem?: ApprovalStatusRenderprop;
item?: ItemProps;
onUserName?: ChangeEvent;
}
export {};