summaryrefslogtreecommitdiffstats
path: root/src/store/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/index.ts')
-rw-r--r--src/store/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/store/index.ts b/src/store/index.ts
index 277bbfc2a..1a6dfc1c9 100644
--- a/src/store/index.ts
+++ b/src/store/index.ts
@@ -13,12 +13,12 @@ export const ACTIONS = {
...FOLDER_ACTION_TYPES,
}
-export type ActionParams = { commit: any };
+type Func = (name: string, value: unknown) => void;
+export type ActionParams = { commit: Func };
export type AppState = {
feeds: Feed[];
folders: Folder[];
- items: any[];
}
export default {