UNPKG

gotql

Version:

A GraphQL query framework for serverside apps

14 lines 502 B
import { Got as GotInstance } from 'got'; /** * @typedef {object} userOpts User Options * @prop {boolean} debug Sets debug mode on/off * @prop {number} errorStatusCode Default error code to send back to the user on error (defaults to 500) * @prop {headerObj} headers Custom headers to be sent along */ export type UserOptions = { errorStatusCode?: number; headers?: Record<string, string>; gotInstance?: GotInstance; useHttp2?: boolean; }; //# sourceMappingURL=UserOptions.d.ts.map