Files
ueblueprint/js/entity/Base64ObjectsEncoded.js
barsdeveloper fdd86ce5de Refactor jsdoc types (#16)
* WIP

* Fix type 1

* Missing types info

* Some fixes

* Several types refactoring and fixes

* WIP

* Fix grammar
2023-09-22 22:56:33 +02:00

25 lines
439 B
JavaScript

import IEntity from "./IEntity.js"
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() {
}
}