office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
15 lines (14 loc) • 456 B
TypeScript
import { BaseComponent } from '../../Utilities';
import { IGroupDividerProps } from './GroupedList.Props';
export interface IGroupDividerProps {
/**
* The Show All link text.
* @default 'Show All'
*/
showAllLinkText: string;
}
export declare class GroupShowAll extends BaseComponent<IGroupDividerProps, {}> {
static defaultProps: IGroupDividerProps;
render(): JSX.Element | null;
private _onSummarizeClick(ev);
}