redoc/lib/components/ApiInfo/api-info.ts
2016-06-13 20:54:24 +03:00

23 lines
562 B
TypeScript

'use strict';
import { SchemaManager, 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(schemaMgr:SchemaManager, private optionsService:OptionsService) {
super(schemaMgr);
}
prepareModel() {
this.data = this.componentSchema.info;
this.specUrl = this.optionsService.options.specUrl;
}
}