type IPluginRoutingByCollection = Map; type IPluginTypes = "modules"; type IPluginRoutesByType = Map; type IPluginRoutesByName = Map; interface IPluginRoute { redirect?: string; deprecation?: { removalVersion?: string; removalDate?: string; warningText?: string; }; tombstone?: { removalVersion?: string; removalDate?: string; warningText?: string; }; } export type { IPluginRoute, IPluginRoutesByName, IPluginRoutesByType, IPluginRoutingByCollection, IPluginTypes };