mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
18 lines
340 B
TypeScript
18 lines
340 B
TypeScript
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;
|
|
|
|
}
|
|
|
|
} |