import { DyNTS_RouteSecurity } from '../../_enums/route-security.enum'; import { DyNTS_Controller } from '../../_services/route/controller.service'; /** * This is a main route point handler, which collects a list of controllers for the API */ export interface DyNTS_RoutingModule_Settings { /** * main route of the module */ route: string; /** * the collection of controllers (sub-routes, with differentlogical parts, to different db elements) */ controllers: DyNTS_Controller[]; /** * securityOverride will be used to create different security for a single module without changing the default security (http/https/both) */ securityOverride?: DyNTS_RouteSecurity; }