index.d.ts 551 B

12345678910111213141516171819
  1. import { ApolloServerPlugin } from "apollo-server-plugin-base";
  2. export interface TracingFormat {
  3. version: 1;
  4. startTime: string;
  5. endTime: string;
  6. duration: number;
  7. execution: {
  8. resolvers: {
  9. path: (string | number)[];
  10. parentType: string;
  11. fieldName: string;
  12. returnType: string;
  13. startOffset: number;
  14. duration: number;
  15. }[];
  16. };
  17. }
  18. export declare const plugin: (_futureOptions?: {}) => () => ApolloServerPlugin;
  19. //# sourceMappingURL=index.d.ts.map