Object that stores injectables
@Service
will specify the class as one that can be injected
The class is used as the lookup when injecting the service
import { Service } from "@fork-git-it/annotatedjs";
@Service()
export class ExampleService {
doSomething() {}
}
Generated using TypeDoc
A class decorator that makes the class injectable