How can I access the route._loadedConfig member ? It is always undefined.
const a = (route as any)._loadedConfig;
const a = (<any>route )._loadedConfig;
const a = (<any>route )['_loadedConfig'];
None of these work.
VS-Code shows the value in debug-window:
