@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
15 lines (14 loc) • 684 B
TypeScript
import * as React from 'react';
import { AdaptableObject } from '../../../../AdaptableState/Common/AdaptableObject';
import { AccessLevel } from '../../../../AdaptableState/Common/Entitlement';
import { SuspendableObject } from '../../../../AdaptableState/Common/SuspendableObject';
interface EntityListSuspendButtonProps {
onSuspend: (adaptableObject: AdaptableObject) => void;
onUnSuspend: (adaptableObject: AdaptableObject) => void;
suspendableObject: SuspendableObject;
style?: React.CSSProperties;
disabled?: boolean;
accessLevel?: AccessLevel;
}
export declare const SuspendToggleButton: React.FunctionComponent<EntityListSuspendButtonProps>;
export {};