Skip to content

Commit

Permalink
fix: add missing file extension in relative file path import
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Feb 24, 2024
1 parent 36eca80 commit daa3ecb
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 @@ -13,8 +13,8 @@ export const graphql = withDefaults(request, {
url: "/graphql",
});

export type { GraphQlQueryResponseData } from "./types";
export { GraphqlResponseError } from "./error";
export type { GraphQlQueryResponseData } from "./types.js";
export { GraphqlResponseError } from "./error.js";

export function withCustomRequest(customRequest: typeof request) {
return withDefaults(customRequest, {
Expand Down

0 comments on commit daa3ecb

Please sign in to comment.