connected-next-router
Version:
A Redux binding for Next.js Router
14 lines (13 loc) • 380 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GO = exports.PREFETCH = exports.REPLACE = exports.PUSH = void 0;
exports.PUSH = 'push';
exports.REPLACE = 'replace';
exports.PREFETCH = 'prefetch';
exports.GO = 'go';
exports.default = {
PUSH: exports.PUSH,
REPLACE: exports.REPLACE,
GO: exports.GO,
PREFETCH: exports.PREFETCH
};