office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
14 lines (13 loc) • 476 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
import './DetailsListExample.scss';
export interface IDetailsListNavigatingFocusExampleState {
items: any;
initialFocusedIndex?: number;
}
export declare class DetailsListNavigatingFocusExample extends React.Component<{}, IDetailsListNavigatingFocusExampleState> {
state: IDetailsListNavigatingFocusExampleState;
private _columns;
render(): JSX.Element;
private _navigate;
}