Fix input wrappin for multiple inputs

This commit is contained in:
barsdeveloper
2023-04-24 20:33:58 +02:00
parent ccba817160
commit dd25a75c02
15 changed files with 75 additions and 29 deletions

View File

@@ -0,0 +1,26 @@
import IEntity from "./IEntity.js"
/** @typedef {import("./ObjectEntity.js").default} ObjectEntity */
export default class Base64ObjectsEncoded extends IEntity {
static attributes = {
...super.attributes,
value: {
type: String,
},
objects: {
ignored: true,
},
}
constructor(values) {
super(values)
/** @type {String} */this.value
/** @type {ObjectEntity[]} */this.objects
}
decode() {
}
}