15 lines
579 B
Plaintext
15 lines
579 B
Plaintext
export const ACTION_REFRESH = "refresh";
|
|
export const ACTION_NAVIGATE = "navigate";
|
|
export const ACTION_RESTORE = "restore";
|
|
export const ACTION_SERVER_PATCH = "server-patch";
|
|
export const ACTION_PREFETCH = "prefetch";
|
|
export const ACTION_FAST_REFRESH = "fast-refresh";
|
|
export const ACTION_SERVER_ACTION = "server-action";
|
|
export var PrefetchKind;
|
|
(function(PrefetchKind) {
|
|
PrefetchKind["AUTO"] = "auto";
|
|
PrefetchKind["FULL"] = "full";
|
|
PrefetchKind["TEMPORARY"] = "temporary";
|
|
})(PrefetchKind || (PrefetchKind = {}));
|
|
|
|
//# sourceMappingURL=router-reducer-types.js.map |