You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
argos/dmp-frontend/src/app/dataset-profile-form/rule-component/rule.component.ts

18 lines
341 B
TypeScript

import { Component, Input } from '@angular/core';
import { FormGroup } from '@angular/forms';
@Component({
selector: 'app-rule-form',
templateUrl: './rule.component.html',
styleUrls: ['./rule.component.scss']
})
export class RuleFormComponent {
@Input() form: FormGroup;
@Input() dataModel: FormGroup;
TargetValidation() {
}
}