UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

17 lines (16 loc) 518 B
export interface IPropertiesTableSetProps { /** * Component name, assumes component resides in /components/[name]/ folder * and properties are at /components/[name]/[name].Props.ts. */ componentName: string; /** * If provided, overrides componentName usage to derive the path to the props. * Example: 'utilities/focus/' */ componentPath?: string; /** * If specified, will only render interfaces and enums specified here. */ renderOnly?: Array<string>; }