{file.title}
{numComments}
diff --git a/src/client/IClient.ts b/src/client/IClient.ts
index eb7694d..1b7e669 100644
--- a/src/client/IClient.ts
+++ b/src/client/IClient.ts
@@ -1,4 +1,4 @@
-import {CommentData, FullProjectData, ProjectData, SectionData} from '../types';
+import {CommentData, FullProjectData, SectionData} from '../types';
export interface IClient {
fetchFullDataForProject: (projectId: string) => Promise
;
diff --git a/src/store/IStore.ts b/src/store/IStore.ts
deleted file mode 100644
index c0242b9..0000000
--- a/src/store/IStore.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import {CommentData, FileData, ProjectData, SectionData} from '../types';
-
-export interface IStore {
- getAllProjects(): Promise;
- getAllSections(): Promise;
- getAllFiles(): Promise;
- getAllComments(): Promise;
-}
diff --git a/src/store/LocalStorageStore.ts b/src/store/LocalStorageStore.ts
index c5bdb9f..5908afc 100644
--- a/src/store/LocalStorageStore.ts
+++ b/src/store/LocalStorageStore.ts
@@ -1,5 +1,4 @@
import {CommentData, EntityType, FileData, ProjectData, SectionData} from '../types';
-import {IStore} from './IStore';
export interface LocalStorageDependency {
getItem(key: string): string | null;
@@ -22,7 +21,7 @@ export type StoreData = {
comments: CommentData[];
}
-export class LocalStorageStore implements IStore {
+export class LocalStorageStore {
private ls: LocalStorageDependency;
private currentData: StoreData;
diff --git a/src/store/MockLocalStorage.ts b/src/store/MockLocalStorageDependency.ts
similarity index 82%
rename from src/store/MockLocalStorage.ts
rename to src/store/MockLocalStorageDependency.ts
index a1329c7..cfc9890 100644
--- a/src/store/MockLocalStorage.ts
+++ b/src/store/MockLocalStorageDependency.ts
@@ -1,6 +1,6 @@
import {LocalStorageDependency} from './LocalStorageStore';
-export class MockLocalStorage> implements LocalStorageDependency {
+export class MockLocalStorageDependency> implements LocalStorageDependency {
public currentData: T;
constructor(data: T) {