office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
15 lines (14 loc) • 474 B
TypeScript
import * as React from 'react';
export interface IPanelLightDismissCustomExampleState {
showPanel: boolean;
hideDialog: boolean;
}
export declare class PanelLightDismissCustomExample extends React.Component<{}, IPanelLightDismissCustomExampleState> {
state: IPanelLightDismissCustomExampleState;
render(): JSX.Element;
private _showPanel;
private _hidePanel;
private _showDialog;
private _closeDialog;
private _closeDialogAndHidePanel;
}