office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
14 lines (13 loc) • 423 B
TypeScript
import * as React from 'react';
export interface ILayerCustomizedExampleState {
showPanel: boolean;
trapPanel: boolean;
}
export declare class LayerCustomizedExample extends React.Component<{}, ILayerCustomizedExampleState> {
state: ILayerCustomizedExampleState;
private _layerHostId;
render(): JSX.Element;
private _onDismissPanel;
private _onShowPanelChange;
private _onTrapPanelChange;
}