Initial commit

This commit is contained in:
2022-07-12 16:34:41 +02:00
commit e7947dc769
14 changed files with 1287 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
export abstract class accessory {
public type: string
public typeId: number
constructor(type: string, typeId: number) {
this.type = type
this.typeId = typeId
}
abstract setName(name)
abstract setValue(key, value)
abstract update()
}