@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
12 lines (11 loc) • 604 B
TypeScript
import * as React from 'react';
import { AccessLevel, AdaptableApi } from '../../../../../types';
import { IModule } from '../../../../Strategy/Interface/IModule';
import { ModuleParams, ModuleViewPopupProps } from '../../SharedProps/ModuleViewPopupProps';
export interface AdaptablePopupModuleViewProps extends ModuleViewPopupProps<typeof AdaptablePopupModuleView> {
module: IModule;
api: AdaptableApi;
accessLevel: AccessLevel;
popupParams?: ModuleParams;
}
export declare const AdaptablePopupModuleView: React.FunctionComponent<React.PropsWithChildren<AdaptablePopupModuleViewProps>>;