8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
import { QueryClient } from '@tanstack/react-query'
|
|
import { AuthContextType } from './auth'
|
|
|
|
export default interface RouterContext {
|
|
auth: AuthContextType
|
|
queryClient: QueryClient
|
|
}
|