office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
17 lines (16 loc) • 533 B
TypeScript
import * as React from 'react';
import './List.Scrolling.Example.scss';
export interface IListScrollingExampleProps {
items: any[];
}
export interface IListScrollingExampleState {
selectedIndex: number;
}
export declare class ListScrollingExample extends React.Component<IListScrollingExampleProps, IListScrollingExampleState> {
private _list;
constructor(props: IListScrollingExampleProps);
render(): JSX.Element;
private _scrollRelative(delta);
private _scroll(index);
private _resolveList(list);
}