This pull request defines an extendable ContainerBindings. This interface can be used to define existing container bindings which in turn allow IntelliSense because of TypeScript’s declaration merging.
/**
* Add container bindings for services from this provider.
*/
declare module '@supercharge/contracts' {
export interface ContainerBindings {
'router': HttpRouter
'server': HttpServer
}
}
This pull request defines an extendable
ContainerBindings
. This interface can be used to define existing container bindings which in turn allow IntelliSense because of TypeScript’s declaration merging.