@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
19 lines (18 loc) • 503 B
TypeScript
import { BaseState } from './BaseState';
import { AdaptableObject } from './Common/AdaptableObject';
/**
* Internal State used by AdapTable for managing the OpenFin plugin
*/
export interface OpenFinState extends BaseState {
CurrentLiveOpenFinReport?: OpenFinReport;
OpenFinCurrentReportName?: string;
}
/**
* An OpenFin report
*/
export interface OpenFinReport extends AdaptableObject {
/**
* Name of Report (which will exist in the Export State)
*/
ReportName: string;
}