# registerService Function

Module
import { registerService } from "@tsed/di"
Source/packages/di/src/registries/ProviderRegistry.ts

# Overview

const registerService: (provider: any, instance?: any) => void;

# Description

Add a new service in the ProviderRegistry. This service will be built when InjectorService will be loaded.

# Example

import {registerService, InjectorService} from "@tsed/common";

export default class MyFooService {
    constructor(){}
    getFoo() {
        return "test";
    }
}

registerService({provide: MyFooService});
// or
registerService(MyFooService);

const injector = new InjectorService();
injector.load();

const myFooService = injector.get<MyFooService>(MyFooService);
myFooService.getFoo(); // test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18