mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 23:55:04 +08:00
* WIP * Fix type 1 * Missing types info * Some fixes * Several types refactoring and fixes * WIP * Fix grammar
25 lines
439 B
JavaScript
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() {
|
|
|
|
}
|
|
}
|