---
lang: en
title: 'API docs: context.createproxywithinterceptors'
keywords: LoopBack 4.0, LoopBack 4, Node.js, TypeScript, OpenAPI
sidebar: lb4_sidebar
editurl: https://github.com/strongloop/loopback-next/tree/master/packages/context
permalink: /doc/en/lb4/apidocs.context.createproxywithinterceptors.html
---

<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@loopback/context](./context.md) &gt; [createProxyWithInterceptors](./context.createproxywithinterceptors.md)

## createProxyWithInterceptors() function

Create a proxy that applies interceptors for method invocations

<b>Signature:</b>

```typescript
export declare function createProxyWithInterceptors<T extends object>(target: T, context?: Context, session?: ResolutionSession, source?: InvocationSource): AsyncProxy<T>;
```

## Parameters

|  Parameter | Type | Description |
|  --- | --- | --- |
|  target | T | Target class or object |
|  context | [Context](./context.context.md) | Context object |
|  session | [ResolutionSession](./context.resolutionsession.md) | Resolution session |
|  source | [InvocationSource](./context.invocationsource.md) | Invocation source |

<b>Returns:</b>

[AsyncProxy](./context.asyncproxy.md)<!-- -->&lt;T&gt;


