UNPKG

pinusmod

Version:

[![Build Status](https://travis-ci.org/node-pinus/pinus.svg?branch=master)](https://travis-ci.org/node-pinus/pinus)

11 lines (10 loc) 427 B
import { ChannelService, ChannelServiceOptions } from '../common/service/channelService'; import { IComponent } from '../interfaces/IComponent'; import { Application } from '../application'; export class ChannelComponent extends ChannelService implements IComponent { constructor(app: Application, opts: ChannelServiceOptions) { super(app , opts); app.set('channelService', this, true); } name = '__channel__'; }