Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import { ReactNode } from 'react';
export interface StatusDetailsRenderProp extends Function {
    (props?: StatusDetailsProps): ReactNode;
}
export interface StatusDetailsProps {
    className?: string;
    children?: ReactNode;
    renderName?: StatusDetailsRenderProp;
    renderIdentifier?: StatusDetailsRenderProp;
    renderEmail?: StatusDetailsRenderProp;
    renderTeamRole?: StatusDetailsRenderProp;
    renderStatus?: StatusDetailsRenderProp;
    renderBox?: StatusDetailsRenderProp;
    renderWrapper?: StatusDetailsRenderProp;
    renderDefaultView: any;
    renderExpandView: any;
    renderToggleButton: any;
}