UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

16 lines (15 loc) 489 B
/// <reference types="react" /> import { BaseComponent } from '../../Utilities'; import { IGroupDividerProps } from './GroupedList.types'; 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); }