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