UNPKG

372 BTypeScriptView Raw
1import { GraphQLScalarType, GraphQLScalarTypeConfig } from 'graphql';
2type BufferJson = {
3 type: 'Buffer';
4 data: number[];
5};
6export declare const GraphQLByteConfig: GraphQLScalarTypeConfig<Buffer | string | BufferJson, Buffer>;
7export declare const GraphQLByte: GraphQLScalarType<string | BufferJson | Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>;
8export {};