remove return types

This commit is contained in:
Mads Rasmussen
2023-01-30 21:03:35 +01:00
parent c03d09eec8
commit d642f22585

View File

@@ -21,7 +21,7 @@ export class UmbTemplateTreeStore extends UmbStoreBase {
this.#data.append(items);
}
updateItem(key: string, data: Partial<EntityTreeItem>): void {
updateItem(key: string, data: Partial<EntityTreeItem>) {
const entries = this.#data.getValue();
const entry = entries.find((entry) => entry.key === key);
@@ -30,7 +30,7 @@ export class UmbTemplateTreeStore extends UmbStoreBase {
}
}
removeItem(key: string): void {
removeItem(key: string) {
const entries = this.#data.getValue();
const entry = entries.find((entry) => entry.key === key);