@loopback/docs
Version:
Documentation for LoopBack 4
32 lines (21 loc) • 1.31 kB
Markdown
---
lang: en
title: 'API docs: context.resolutionoptions'
keywords: LoopBack 4.0, LoopBack 4
sidebar: lb4_sidebar
permalink: /doc/en/lb4/apidocs.context.resolutionoptions.html
---
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [@loopback/context](./context.md) > [ResolutionOptions](./context.resolutionoptions.md)
## ResolutionOptions interface
Options for binding/dependency resolution
<b>Signature:</b>
```typescript
export interface ResolutionOptions
```
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [asProxyWithInterceptors](./context.resolutionoptions.asproxywithinterceptors.md) | <code>boolean</code> | A boolean flag to control if a proxy should be created to apply interceptors for the resolved value. It's only honored for bindings backed by a class. |
| [optional](./context.resolutionoptions.optional.md) | <code>boolean</code> | A boolean flag to indicate if the dependency is optional. If it's set to <code>true</code> and the binding is not bound in a context, the resolution will return <code>undefined</code> instead of throwing an error. |
| [session](./context.resolutionoptions.session.md) | <code>ResolutionSession</code> | A session to track bindings and injections |