@hybris-software/use-query
Version:
Simple way to manage your api calls
17 lines (16 loc) • 309 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.status = exports.actions = void 0;
const status = {
IDLE: "idle",
LOADING: "loading",
SUCCESS: "success",
ERROR: "error"
};
exports.status = status;
const actions = {
RESET: "reset"
};
exports.actions = actions;