shootismoke/backend

View on GitHub
src/util/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { HawkResult } from './hawk';

/**
 * Shared context for Apollo Server.
 */
export interface ApolloContext {
    hawk: HawkResult | Error;
}