All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.app.modules.scenarios.components.execution.component-read.component-read.component.ts Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
import { Component, Input, OnInit } from '@angular/core';


import {  ComponentTask } from '@model';

@Component({
    selector: 'chutney-component-read',
    templateUrl: './component-read.component.html',
    styleUrls: ['./component-read.component.scss']
})
export class ComponentReadComponent implements OnInit {

    @Input() step: ComponentTask;
    showImplementation = false;
    ngOnInit(): void {

    }

    isNotEmpty(object: Object) {
        return Object.keys(object).length > 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy