export function useActions<T = any>(namespace: string): ActionMap<T> {
    return mapFromStore<ActionMap<T>>('actions', namespace)
}