This commit is contained in:
Peter Maquiran
2023-09-19 10:21:23 +01:00
parent 527cc0f2a6
commit f51bd246fc
29 changed files with 754 additions and 261 deletions
+8
View File
@@ -18,4 +18,12 @@ export class DataService {
return this.data[name]
}
delate(name: string) {
delete this.data[name]
}
clear() {
this.data = {}
}
}