UNPKG

graphql-hooks

Version:
9 lines (8 loc) 284 B
import { MiddlewareFunction } from '../../types/common-types'; /** * CacheMiddleware - just an extremely naive example * @param {function} makeRequest * @returns Promise<response> */ declare const CacheMiddleware: () => MiddlewareFunction; export default CacheMiddleware;