mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-15 09:44:49 +08:00
Fix input wrappin for multiple inputs
This commit is contained in:
26
js/entity/Base64ObjectsEncoded.js
Normal file
26
js/entity/Base64ObjectsEncoded.js
Normal 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() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user