ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
20 lines (19 loc) • 606 B
TypeScript
import { ComponentMeta } from "../context/context";
import { AgGridRegisteredComponentInput } from "../components/framework/userComponentRegistry";
import { IComponent } from "./iComponent";
import { IRowModel } from "./iRowModel";
export interface Module {
moduleName: string;
beans?: any[];
agStackComponents?: ComponentMeta[];
userComponents?: {
componentName: string;
componentClass: AgGridRegisteredComponentInput<IComponent<any>>;
}[];
rowModels?: {
[name: string]: {
new (): IRowModel;
};
};
dependantModules?: Module[];
}