mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 19:36:44 +03:00
11 lines
218 B
JavaScript
11 lines
218 B
JavaScript
'use strict';
|
|
|
|
import { EventEmitter } from '@angular/core';
|
|
|
|
export class RedocEventsService {
|
|
constructor() {
|
|
this.bootstrapped = new EventEmitter();
|
|
this.samplesLanguageChanged = new EventEmitter();
|
|
}
|
|
}
|