mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 19:36:44 +03:00
26 lines
598 B
TypeScript
26 lines
598 B
TypeScript
'use strict';
|
|
import { Component, ChangeDetectionStrategy, OnInit } from '@angular/core';
|
|
import { SpecManager, BaseComponent } from '../base';
|
|
|
|
@Component({
|
|
selector: 'security-definitions',
|
|
styleUrls: ['./security-definitions.css'],
|
|
templateUrl: './security-definitions.html',
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class SecurityDefinitions extends BaseComponent implements OnInit {
|
|
info: any = {};
|
|
specUrl: String;
|
|
message: string = 'Roman';
|
|
constructor(specMgr:SpecManager) {
|
|
super(specMgr);
|
|
}
|
|
|
|
init() {
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.preinit();
|
|
}
|
|
}
|