import { createAction } from "typesafe-actions"; import { KristWorkDetailed } from "../../krist/api/types"; import * as constants from "../constants"; export const setLastBlockID = createAction(constants.LAST_BLOCK_ID)<number>(); export const setDetailedWork = createAction(constants.DETAILED_WORK)<KristWorkDetailed>();