office-ui-fabric-react
Version:
Reusable React components for building experiences for Microsoft 365.
13 lines (12 loc) • 465 B
TypeScript
import * as React from 'react';
import { ILayerHostProps, ILayerHost } from './LayerHost.types';
export declare class LayerHost extends React.Component<ILayerHostProps> implements ILayerHost {
hostId: string;
rootRef: React.RefObject<HTMLDivElement>;
constructor(props: ILayerHostProps);
notifyLayersChanged(): void;
shouldComponentUpdate(): boolean;
componentDidMount(): void;
componentWillUnmount(): void;
render(): JSX.Element;
}