Fix type cast at AsyncResource usage
[e-mobility-charging-stations-simulator.git] / src / charging-station / AuthorizedTagsCache.ts
index 747b7593e422d5ef123444170a6cbc470a8333b0..0f702047702ce5cc92890f28679a9cafddacf1fc 100644 (file)
@@ -64,6 +64,10 @@ export default class AuthorizedTagsCache {
     return this.getTags(file);
   }
 
+  public deleteAuthorizedTags(file: string): boolean {
+    return this.deleteTags(file);
+  }
+
   private hasTags(file: string): boolean {
     return this.tagsCaches.has(file);
   }