office-ui-fabric-react
Version:
Reusable React components for building experiences for Microsoft 365.
10 lines (9 loc) • 327 B
TypeScript
import * as React from 'react';
import { IOverlayProps } from './Overlay.types';
export declare class OverlayBase extends React.Component<IOverlayProps, {}> {
private _allowTouchBodyScroll;
constructor(props: IOverlayProps);
componentDidMount(): void;
componentWillUnmount(): void;
render(): JSX.Element;
}