Generic unknown keys object entity

This commit is contained in:
barsdeveloper
2022-11-20 18:03:40 +01:00
parent 1353a4ff4f
commit 401ce75fdc
12 changed files with 258 additions and 31 deletions

View File

@@ -0,0 +1,14 @@
import IEntity from "./IEntity"
import TypeInitialization from "./TypeInitialization"
export default class UnknownKeysEntity extends IEntity {
static attributes = {
lookbehind: new TypeInitialization(String, false, "", false, true)
}
constructor(values = {}) {
super(values)
/** @type {String} */ this.lookbehind
}
}