@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
14 lines (13 loc) • 499 B
TypeScript
import { AdaptableSystemIconName } from '../../types';
import { CustomRenderContext, AdaptableFrameworkComponent } from '../../agGrid/AdaptableFrameworkComponent';
/**
* Config used to open a custom window
*/
export interface CustomWindowConfig {
id: string;
title?: string;
icon?: AdaptableSystemIconName;
render?: (customRenderContext: CustomRenderContext) => string | null;
frameworkComponent?: AdaptableFrameworkComponent;
onFrameworkComponentDestroyed?: () => void;
}