mirror of
https://github.com/graphql-hive/console
synced 2026-05-24 09:38:26 +00:00
13 lines
277 B
TypeScript
13 lines
277 B
TypeScript
export interface RegistryContext {
|
|
req: any;
|
|
requestId: string;
|
|
user: any;
|
|
headers: Record<string, string | string[] | undefined>;
|
|
abortSignal: AbortSignal;
|
|
}
|
|
|
|
declare global {
|
|
namespace GraphQLModules {
|
|
interface GlobalContext extends RegistryContext {}
|
|
}
|
|
}
|