export function useGetters<T = any>(namespace: string): GetterMap<T> {
    return mapFromStore<GetterMap<T>>('getters', namespace)
}