redoc/lib/components/SecurityDefinitions/security-definitions.ts
2016-10-23 20:18:42 +03:00

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();
}
}