dino-core
Version:
A dependency injection framework for NodeJS applications
14 lines (13 loc) • 411 B
TypeScript
import { Component } from './component';
/**
* A service represent a component that is responsibility is to orchestrate
* logic across domain objects.
* When contextScan is set to true, classes extending this class will be
* automatically discovered and injected on the application context.
*
* @typedef Service
* @public
*/
export declare class Service extends Component {
getTypeName(): string;
}