office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
14 lines (13 loc) • 408 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
export declare type IExampleItem = {
name: string;
thumbnail: string;
};
export interface IListGhostingExampleProps {
items: IExampleItem[];
}
export declare class ListGhostingExample extends React.Component<IListGhostingExampleProps> {
render(): JSX.Element;
private _onRenderCell(item, index, isScrolling);
}