Files
apollo/packages/test-e2e-ssr/src/context.ts
T
Guillaume Chau 574bd8f2b1 test: ssr
2023-09-12 11:34:12 +02:00

12 lines
144 B
TypeScript

export interface Context {
state: {
apollo?: any
}
}
declare global {
interface Window {
_INITIAL_STATE_: Context['state']
}
}