@graphql-mesh/transport-rest
Version:
11 lines (10 loc) • 449 B
text/typescript
import { type Transport } from '@graphql-mesh/transport-common';
export interface RESTTransportOptions {
timeout?: number;
queryParams?: Record<string, string>;
}
declare const transport: Transport<RESTTransportOptions>;
export default transport;
export { processDirectives } from './directives/process.cjs';
export type { ProcessDirectiveArgs } from './directives/process.cjs';
export { processScalarType } from './directives/scalars.cjs';