UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

9 lines (8 loc) 209 B
export interface IViewport { width: number; height: number; } export interface IWithViewportState { viewport?: IViewport; } export declare function withViewport<P, S>(ComposedComponent: any): any;