UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

16 lines (15 loc) 563 B
import * as React from 'react'; import { IOverflowSetItemProps } from 'office-ui-fabric-react/lib/OverflowSet'; export interface IKeytipsOverflowExampleState { items: IOverflowSetItemProps[]; overflowItems: IOverflowSetItemProps[]; } export declare class KeytipsOverflowExample extends React.Component<{}, IKeytipsOverflowExampleState> { private _initialItems; private _initialOverflowItems; constructor(props: {}); render(): JSX.Element; private _onRenderItem; private _onRenderOverflowButton; private _toggleOverflowItems; }