mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 19:36:44 +03:00
003fba8651
Rename schemaMgr to specMgr fix error logs in tests
23 lines
554 B
TypeScript
23 lines
554 B
TypeScript
'use strict';
|
|
|
|
import { SpecManager, RedocComponent, BaseComponent } from '../base';
|
|
import { OptionsService } from '../../services/index';
|
|
|
|
@RedocComponent({
|
|
selector: 'api-info',
|
|
styleUrls: ['./api-info.css'],
|
|
templateUrl: './api-info.html'
|
|
})
|
|
export class ApiInfo extends BaseComponent {
|
|
data: any;
|
|
specUrl: String;
|
|
constructor(specMgr:SpecManager, private optionsService:OptionsService) {
|
|
super(specMgr);
|
|
}
|
|
|
|
prepareModel() {
|
|
this.data = this.componentSchema.info;
|
|
this.specUrl = this.optionsService.options.specUrl;
|
|
}
|
|
}
|