member_webapp/@overflow/noauth-probe/component/noauth-probe-general.component.ts

19 lines
377 B
TypeScript
Raw Normal View History

2018-06-14 06:45:39 +00:00
import { Component, OnInit, Input } from '@angular/core';
import { NoAuthProbe } from '@overflow/commons-typescript';
@Component({
selector: 'of-noauth-probe-general',
templateUrl: './noauth-probe-general.component.html',
})
export class NoAuthProbeGeneralComponent implements OnInit {
@Input() noAuthProbe: NoAuthProbe;
constructor(
) {
}
ngOnInit() {
}
}