UNPKG

@adaptabletools/adaptable

Version:

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

16 lines (15 loc) 560 B
import * as React from 'react'; import { SimpleButtonProps } from '../../../components/SimpleButton'; import { AdaptableSharedEntityConfig } from '../../../AdaptableState/TeamSharingState'; interface ButtonShareProps extends SimpleButtonProps { onShare: (config: AdaptableSharedEntityConfig) => void; Header: string; } interface ButtonShareState { open: boolean; } export declare class ButtonShare extends React.Component<ButtonShareProps, ButtonShareState> { constructor(props: ButtonShareProps); render(): React.JSX.Element; } export {};