@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) • 518 B
TypeScript
import * as React from 'react';
import { CustomRenderContext } from '../../../types';
import { AdaptableFrameworkComponent } from '../../types';
type Render = (customRenderContext: CustomRenderContext) => string | null;
interface ExternalRendererProps {
componentName?: string;
render?: Render;
frameworkComponent?: AdaptableFrameworkComponent;
onDestroy?: () => void;
style?: React.CSSProperties;
}
export declare const ExternalRenderer: React.FunctionComponent<ExternalRendererProps>;
export {};