office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
17 lines (16 loc) • 667 B
TypeScript
import { IGroup } from '../DetailsList';
export interface IExampleItem {
thumbnail: string;
key: string;
name: string;
description: string;
color: string;
shape: string;
location: string;
width: number;
height: number;
}
export declare function createListItems(count: number, startIndex?: number): IExampleItem[];
export declare function createGroups(groupCount: number, groupDepth: number, startIndex: number, itemsPerGroup: number, level?: number, key?: string, isCollapsed?: boolean): IGroup[];
export declare function lorem(wordCount: number): string;
export declare function isGroupable(key: string): boolean;