UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

16 lines (15 loc) 547 B
import * as React from 'react'; import { IRefObject } from '../../Utilities'; export interface ILayerHost { } export interface ILayerHostProps extends React.HTMLAttributes<HTMLElement> { /** * Optional callback to access the ILayerHost interface. Use this instead of ref for accessing * the public methods and properties of the component. */ componentRef?: IRefObject<ILayerHost>; /** * Defines the id for the layer host that Layers can target (using the hostId property.) */ id?: string; }