(
keyWithPath: BindingAddress<ValueType>,
optionsOrSession?: ResolutionOptionsOrSession,
)
| 707 | |
| 708 | // Implementation |
| 709 | async get<ValueType>( |
| 710 | keyWithPath: BindingAddress<ValueType>, |
| 711 | optionsOrSession?: ResolutionOptionsOrSession, |
| 712 | ): Promise<ValueType | undefined> { |
| 713 | this.debug('Resolving binding: %s', keyWithPath); |
| 714 | return this.getValueOrPromise<ValueType | undefined>( |
| 715 | keyWithPath, |
| 716 | optionsOrSession, |
| 717 | ); |
| 718 | } |
| 719 | |
| 720 | /** |
| 721 | * Get the synchronous value bound to the given key, optionally |
no test coverage detected