@clerk/clerk-js
Version:
Clerk JS library
33 lines (32 loc) • 1.02 kB
TypeScript
import React from 'react';
export interface RouteContextValue {
basePath: string;
startPath: string;
flowStartPath: string;
fullPath: string;
indexPath: string;
currentPath: string;
matches: (path?: string, index?: boolean) => boolean;
baseNavigate: (toURL: URL) => Promise<unknown>;
navigate: (to: string, options?: {
searchParams?: URLSearchParams;
}) => Promise<unknown>;
resolve: (to: string) => URL;
refresh: () => void;
params: {
[key: string]: string;
};
queryString: string;
queryParams: Record<string, string>;
preservedParams?: string[];
getMatchData: (path?: string, index?: boolean) => false | object;
urlStateParam?: {
startPath: string;
path: string;
componentName: string;
clearUrlStateParam: () => void;
socialProvider: string;
};
}
export declare const RouteContext: React.Context<RouteContextValue | null>;
export declare const useRouter: () => RouteContextValue;