mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-24 16:04:44 +08:00
18 lines
269 B
JavaScript
18 lines
269 B
JavaScript
/**
|
|
* @template {any[]} U
|
|
* @template {[...U]} T
|
|
*/
|
|
export default class Union {
|
|
|
|
/** @type {T} */
|
|
#values
|
|
get values() {
|
|
return this.#values
|
|
}
|
|
|
|
/** @param {T} values */
|
|
constructor(...values) {
|
|
this.#values = values
|
|
}
|
|
}
|