UNPKG

uzen

Version:

General-purpose GraphQL subscription server library

8 lines (7 loc) 213 B
import { Plugin } from 'graphql-yoga'; import { RustJWT } from 'rusty-jwt'; interface AuthPluginOptions { aTs: RustJWT; } declare const useAuth: ({ aTs }: AuthPluginOptions) => Plugin; export default useAuth;