UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

13 lines (12 loc) 419 B
import * as React from 'react'; export interface IDetailsRowCheckProps extends React.HTMLAttributes<HTMLElement> { selected?: boolean; /** * Deprecated at v.65.1 and will be removed by v 1.0. Use 'selected' instead. * @deprecated */ isSelected?: boolean; anySelected: boolean; canSelect: boolean; } export declare const DetailsRowCheck: (props: IDetailsRowCheckProps) => JSX.Element;