mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 23:55:04 +08:00
* Various fixes * Fix name from SettingsInterface * Allow path lookbehind for unknown keys entity * Subraph object name * Several fixes * Various fixes * Fix colors * Various pin types
18 lines
269 B
JavaScript
18 lines
269 B
JavaScript
/**
|
|
* @template {[...U]} T
|
|
* @template {any[]} U
|
|
*/
|
|
export default class Union {
|
|
|
|
/** @type {T} */
|
|
#values
|
|
get values() {
|
|
return this.#values
|
|
}
|
|
|
|
/** @param {T} values */
|
|
constructor(...values) {
|
|
this.#values = values
|
|
}
|
|
}
|