UNPKG

@graphql-yoga/plugin-jwt

Version:
15 lines (14 loc) 432 B
import type { Plugin } from 'graphql-yoga'; import { type JwtPayload } from 'jsonwebtoken'; import { type JwtPluginOptions } from './config.cjs'; import '@whatwg-node/server-plugin-cookies'; export type JWTExtendContextFields = { payload: JwtPayload; token: { value: string; prefix?: string; }; }; export declare function useJWT(options: JwtPluginOptions): Plugin<{ jwt?: JWTExtendContextFields; }>;