Skip to content

Commit

Permalink
fix: export interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardocasares authored and DanielMSchmidt committed Aug 8, 2019
1 parent b487094 commit 23fa9fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ export interface InitOptions {
onRequestResolve?: (span: Span, info: RequestStart) => void;
}

interface ExtendedGraphQLResolveInfo extends GraphQLResolveInfo {
export interface ExtendedGraphQLResolveInfo extends GraphQLResolveInfo {
span?: Span;
}
interface RequestStart {
export interface RequestStart {
request: Pick<Request, "url" | "method" | "headers">;
queryString?: string;
parsedQuery?: DocumentNode;
Expand Down

0 comments on commit 23fa9fc

Please sign in to comment.