Delete AICFormationDescriptorComponent.ts

This commit is contained in:
Pax1601 2023-03-16 15:56:59 +01:00 committed by GitHub
parent b4c0331f47
commit 8f859692dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +0,0 @@
interface ComponentInterface {
"label" : string;
"value" : string;
}
export class AICFormationDescriptorComponent implements ComponentInterface {
label = "(not set)";
value = "(not set)";
constructor( value:any, label?:string ) {
this.label = label || "(not set)";
this.value = value;
}
}