import { IConnectedLdoDataset } from "./IConnectedLdoDataset.cjs"; import { ConnectedPlugin } from "./ConnectedPlugin.cjs"; //#region src/types/ConnectedContext.d.ts /** * Each Plugin comes with a context. This is the aggregate of all those contexts * It is passed between the various components of the "connected" library */ type ConnectedContext[]> = { dataset: IConnectedLdoDataset; } & { [P in Plugins[number] as P["name"]]: P["types"]["context"] }; //#endregion export { ConnectedContext }; //# sourceMappingURL=ConnectedContext.d.cts.map