index.d.ts 1.1 KB

12345678910111213141516
  1. import 'apollo-server-env';
  2. export { runHttpQuery, HttpQueryRequest, HttpQueryError } from './runHttpQuery';
  3. export { default as GraphQLOptions, resolveGraphqlOptions, PersistedQueryOptions, } from './graphqlOptions';
  4. export { ApolloError, toApolloError, SyntaxError, ValidationError, AuthenticationError, ForbiddenError, UserInputError, formatApolloErrors, } from 'apollo-server-errors';
  5. export { convertNodeHttpToRequest } from './nodeHttpToRequest';
  6. export { createPlaygroundOptions, PlaygroundConfig, defaultPlaygroundOptions, PlaygroundRenderPageOptions, } from './playground';
  7. export { ApolloServerBase } from './ApolloServer';
  8. export * from './types';
  9. export * from './requestPipelineAPI';
  10. import { DocumentNode } from 'graphql';
  11. export declare const gql: (template: TemplateStringsArray | string, ...substitutions: any[]) => DocumentNode;
  12. import { GraphQLScalarType } from 'graphql';
  13. export { default as processFileUploads } from './processFileUploads';
  14. export declare const GraphQLUpload: GraphQLScalarType | undefined;
  15. export * from './plugin';
  16. //# sourceMappingURL=index.d.ts.map