diff --git a/src/index.ts b/src/index.ts index 35cbc64..8320a08 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,7 +10,7 @@ export function Handler(target: any, key: string) { * Vuex getter handler specified in Vuex options. */ export type GetterHandler = - (state: TModuleState, rootState: TRootState) => TResult; + (state: TModuleState, getters: any, rootState: TRootState) => TResult; /** * Vuex action handler which takes payload as specified in Vuex options.