UNPKG

256 BTypeScriptView Raw
1import * as React from 'react';
2export declare type ServerContextType = {
3 location?: {
4 pathname: string;
5 search: string;
6 };
7};
8declare const ServerContext: React.Context<ServerContextType | undefined>;
9export default ServerContext;