* Get values for the configuration with a property path * @param session - Resolution session
(session?: ResolutionSession)
| 232 | * @param session - Resolution session |
| 233 | */ |
| 234 | async values(session?: ResolutionSession) { |
| 235 | const configValues = await super.values(session); |
| 236 | const propertyPath = this.propertyPath; |
| 237 | if (!propertyPath) return configValues; |
| 238 | return configValues.map(v => getDeepProperty(v, propertyPath)); |
| 239 | } |
| 240 | } |