/** * security settings for API, * different security paths will need different handlers * * open; http, secure; https or both, */ export enum DyNTS_RouteSecurity { open = 'open', secure = 'secure', both = 'both', }