office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
13 lines (12 loc) • 417 B
TypeScript
import * as React from 'react';
export interface IDetailsListNavigatingFocusExampleState {
items: string[];
initialFocusedIndex?: number;
key: number;
}
export declare class DetailsListNavigatingFocusExample extends React.Component<{}, IDetailsListNavigatingFocusExampleState> {
state: IDetailsListNavigatingFocusExampleState;
private _columns;
render(): JSX.Element;
private _navigate;
}