mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
18 lines
337 B
JavaScript
18 lines
337 B
JavaScript
/** @typedef {import("./IEntity").AnyValueConstructor<*>} AnyValueConstructor */
|
|
|
|
export default class IndexedArray {
|
|
|
|
#type
|
|
get type() {
|
|
return this.#type
|
|
}
|
|
|
|
value = []
|
|
|
|
/** @param {AnyValueConstructor} type */
|
|
constructor(type, value = []) {
|
|
this.#type = type
|
|
this.value = value
|
|
}
|
|
}
|