mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 23:55:04 +08:00
19 lines
354 B
JavaScript
19 lines
354 B
JavaScript
/** @typedef {import("./IEntity.js").AnyValueConstructor<*>} AnyValueConstructor */
|
|
|
|
export default class UnionType {
|
|
|
|
#types
|
|
get types() {
|
|
return this.#types
|
|
}
|
|
|
|
/** @param {...AnyValueConstructor} types */
|
|
constructor(...types) {
|
|
this.#types = types
|
|
}
|
|
|
|
getFirstType() {
|
|
return this.#types[0]
|
|
}
|
|
}
|