office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
25 lines (24 loc) • 686 B
TypeScript
import * as PropTypes from 'prop-types';
import './Layer.Example.scss';
import { BaseComponent } from 'office-ui-fabric-react/lib/Utilities';
export declare class LayerContentExample extends BaseComponent<any, any> {
static contextTypes: {
message: PropTypes.Requireable<any>;
};
context: {
message: string;
};
constructor();
componentDidMount(): void;
render(): JSX.Element;
}
export declare class LayerBasicExample extends BaseComponent<any, any> {
static childContextTypes: {
message: PropTypes.Requireable<any>;
};
constructor();
getChildContext(): {
'message': string;
};
render(): JSX.Element;
}