UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

15 lines (14 loc) 490 B
/// <reference types="react" /> import * as React from 'react'; export interface IDetailsRowCheckProps extends React.HTMLAttributes<HTMLElement> { isHeader?: boolean; 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;