UNPKG

@graphql-tools/executor-http

Version:

A set of utils for faster development of GraphQL tools

10 lines (9 loc) 271 B
/// <reference types="node" /> import type { Readable } from 'stream'; interface GraphQLUpload { filename: string; mimetype: string; createReadStream: () => Readable; } export declare function isGraphQLUpload(upload: any): upload is GraphQLUpload; export {};