UNPKG

@adaptabletools/adaptable

Version:

Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

16 lines (15 loc) 661 B
import * as React from 'react'; import { AdaptableObject, SuspendableObject } from '../../../../AdaptableState/Common/AdaptableObject'; import { AccessLevel } from '../../../../AdaptableState/Common/Entitlement'; interface EntityListSuspendButtonProps { onSuspend: (adaptableObject: AdaptableObject) => void; onUnSuspend: (adaptableObject: AdaptableObject) => void; suspendableObject: SuspendableObject; style?: React.CSSProperties; disabled?: boolean; accessLevel?: AccessLevel; className?: string; iconSize?: number; } export declare const SuspendToggleButton: React.FunctionComponent<EntityListSuspendButtonProps>; export {};