office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
19 lines (18 loc) • 538 B
TypeScript
import * as React from 'react';
import { ILayerProps } from './Layer.Props';
import './Layer.scss';
export declare class Layer extends React.Component<ILayerProps, {}> {
static contextTypes: {
isInLayer: React.Requireable<any>;
};
context: {
isInLayer: boolean;
};
private _layer;
constructor(props?: ILayerProps);
render(): JSX.Element;
componentWillMount(): void;
componentDidMount(): void;
componentWillReceiveProps(props: ILayerProps): void;
componentWillUnmount(): void;
}