office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
17 lines (16 loc) • 574 B
TypeScript
import * as React from 'react';
import { ICommandBarItemProps } from 'office-ui-fabric-react/lib/CommandBar';
import './CalloutExample.scss';
export interface ICalloutNestedExampleProps {
items: ICommandBarItemProps[];
}
export interface ICalloutNestedExampleState {
isCalloutVisible: boolean;
}
export declare class CalloutNestedExample extends React.Component<ICalloutNestedExampleProps, ICalloutNestedExampleState> {
state: ICalloutNestedExampleState;
private _menuButtonElement;
private _titleId;
render(): JSX.Element;
private _onDismiss;
}