mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 11:26:37 +03:00
9 lines
210 B
TypeScript
9 lines
210 B
TypeScript
|
'use strict';
|
||
|
|
||
|
import { EventEmitter, Output } from '@angular/core';
|
||
|
|
||
|
export class RedocEventsService {
|
||
|
@Output() bootstrapped = new EventEmitter();
|
||
|
@Output() samplesLanguageChanged = new EventEmitter();
|
||
|
}
|