// redux/constants.ts export const GET = 'GET'; export const PUT = 'PUT'; export const POST = 'POST'; export const DELETE = 'DELETE'; export const GET_MOVES = 'GET_MOVES'; export const CREATE_MOVE = 'CREATE_MOVE'; export const UPDATE_MOVE = 'UPDATE_MOVE'; export const DELETE_MOVE = 'DELETE_MOVE'; export const MOVE_ERROR = 'MOVE_ERROR';