18 lines
324 B
TypeScript
18 lines
324 B
TypeScript
|
import {
|
||
|
Component, Input
|
||
|
} from '@angular/core';
|
||
|
import { InfraHostOS } from '@overflow/commons-typescript/model/infra';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'of-infra-host-os',
|
||
|
templateUrl: './infra-host-os.component.html',
|
||
|
})
|
||
|
export class InfraHostOSComponent {
|
||
|
|
||
|
@Input() infraHostOS: InfraHostOS;
|
||
|
|
||
|
constructor(
|
||
|
) {
|
||
|
}
|
||
|
}
|