9 lines
260 B
Plaintext
9 lines
260 B
Plaintext
import { AnyRouter } from '@tanstack/router-core';
|
|
import * as React from 'react';
|
|
declare global {
|
|
interface Window {
|
|
__TSR_ROUTER_CONTEXT__?: React.Context<AnyRouter>;
|
|
}
|
|
}
|
|
export declare function getRouterContext(): React.Context<AnyRouter>;
|