redoc/lib/services/events.service.js

11 lines
218 B
JavaScript
Raw Normal View History

2016-05-06 00:48:41 +03:00
'use strict';
2016-05-07 10:54:44 +03:00
import { EventEmitter } from '@angular/core';
2016-05-06 00:48:41 +03:00
export class RedocEventsService {
constructor() {
this.bootstrapped = new EventEmitter();
this.samplesLanguageChanged = new EventEmitter();
}
}