office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
18 lines (17 loc) • 667 B
TypeScript
import * as React from 'react';
import { ScrollablePane } from './ScrollablePane';
export interface IScrollablePane {
/** Triggers a layout update for the pane. */
forceLayoutUpdate(): void;
}
export interface IScrollablePaneProps extends React.HTMLAttributes<HTMLElement | ScrollablePane> {
/**
* Optional callback to access the IScrollablePane interface. Use this instead of ref for accessing
* the public methods and properties of the component.
*/
componentRef?: (component: IScrollablePane) => void;
/**
* Class name to apply to the root in addition to ms-ScrollablePane.
*/
className?: string;
}