mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 11:26:37 +03:00
19 lines
489 B
JavaScript
19 lines
489 B
JavaScript
'use strict';
|
|
|
|
import {RedocComponent, BaseComponent} from '../base';
|
|
import {SchemaManager} from '../../utils/SchemaManager';
|
|
import {ApiInfo} from '../ApiInfo/api-info';
|
|
import {MethodsList} from '../MethodsList/methods-list';
|
|
|
|
@RedocComponent({
|
|
selector: 'redoc',
|
|
providers: [SchemaManager],
|
|
templateUrl: './lib/components/Redoc/redoc.html',
|
|
directives: [ApiInfo, MethodsList]
|
|
})
|
|
export class Redoc extends BaseComponent {
|
|
constructor(schemaMgr) {
|
|
super(schemaMgr);
|
|
}
|
|
}
|