graphql-yoga
Version:
<div align="center"><img src="./website/public/cover.png" width="720" /></div>
14 lines (13 loc) • 537 B
text/typescript
import type { DocumentNode, validate } from 'graphql';
import type { Plugin } from './types.cjs';
interface Cache<T> {
get(key: string): T | undefined;
set(key: string, value: T): void;
}
export interface ParserAndValidationCacheOptions {
documentCache?: Cache<DocumentNode>;
errorCache?: Cache<unknown>;
validationCache?: boolean | Cache<typeof validate>;
}
export declare function useParserAndValidationCache({ documentCache, errorCache, validationCache, }: ParserAndValidationCacheOptions): Plugin<{}>;
export {};