Files
ueblueprint/js/entity/ObjectReferenceEntity.js
2022-04-11 23:35:28 +02:00

18 lines
346 B
JavaScript
Executable File

// @ts-check
import IEntity from "./IEntity"
export default class ObjectReferenceEntity extends IEntity {
static attributes = {
type: String,
path: String,
}
constructor(options = {}) {
super(options)
/** @type {String} */ this.type
/** @type {String} */ this.path
}
}