UNPKG

@loopback/docs

Version:

Documentation files rendered at [https://loopback.io](https://loopback.io)

52 lines (34 loc) 1.35 kB
--- lang: en title: 'API docs: service-proxy.servicemixindoc.component' keywords: LoopBack 4.0, LoopBack 4, Node.js, TypeScript, OpenAPI sidebar: lb4_sidebar editurl: https://github.com/loopbackio/loopback-next/tree/master/packages/service-proxy permalink: /doc/en/lb4/apidocs.service-proxy.servicemixindoc.component.html --- <!-- Do not edit this file. It is automatically generated by API Documenter. --> [Home](./index.md) &gt; [@loopback/service-proxy](./service-proxy.md) &gt; [ServiceMixinDoc](./service-proxy.servicemixindoc.md) &gt; [component](./service-proxy.servicemixindoc.component.md) ## ServiceMixinDoc.component() method Add a component to this application. Also mounts all the components services. <b>Signature:</b> ```typescript component(component: Constructor<unknown>): Binding; ``` ## Parameters | Parameter | Type | Description | | --- | --- | --- | | component | [Constructor](./context.constructor.md)<!-- -->&lt;unknown&gt; | The component to add. | <b>Returns:</b> [Binding](./context.binding.md) ## Example ```ts export class ProductComponent { controllers = [ProductController]; repositories = [ProductRepo, UserRepo]; providers = { [AUTHENTICATION_STRATEGY]: AuthStrategy, [AUTHORIZATION_ROLE]: Role, }; }; app.component(ProductComponent); ```