Files
ueblueprint/js/entity/Base64ObjectsEncoded.js
2023-04-24 20:33:58 +02:00

27 lines
507 B
JavaScript

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() {
}
}