8 lines
254 B
TypeScript
8 lines
254 B
TypeScript
export type ServerContextType = {
|
|
location?: {
|
|
pathname: string;
|
|
search: string;
|
|
};
|
|
};
|
|
export declare const ServerContext: import("react").Context<ServerContextType | undefined>;
|
|
//# sourceMappingURL=serverLocationContext.d.ts.map
|