connected-next-router
Version:
A Redux binding for Next.js Router
13 lines (12 loc) • 372 B
TypeScript
export declare const PUSH = "push";
export declare const REPLACE = "replace";
export declare const PREFETCH = "prefetch";
export declare const GO = "go";
export type RouterMethod = typeof PUSH | typeof REPLACE | typeof PREFETCH | typeof GO;
declare const _default: {
PUSH: string;
REPLACE: string;
GO: string;
PREFETCH: string;
};
export default _default;