mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 00:24:48 +08:00
15 lines
231 B
JavaScript
15 lines
231 B
JavaScript
export default class SerializedType {
|
|
|
|
#types
|
|
get types() {
|
|
return this.#types
|
|
}
|
|
set types(v) {
|
|
this.#types = v
|
|
}
|
|
|
|
constructor(...acceptedTypes) {
|
|
this.#types = acceptedTypes
|
|
}
|
|
}
|