This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(package.json): update eslint ignore pattern to include graphql/…
…code-gen directory fix(graphql.ts): add type annotation to Result import from rustic-error package fix(graphql.ts): add type annotation to response.json() method return value style(index.ts): add missing semicolons and newline at end of file
- Loading branch information
Showing
3 changed files
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export * from "./graphql" | ||
export * from "./graphql"; | ||
|
||
// Code gen: | ||
export * from "./code-gen/gql" | ||
export * from "./code-gen/graphql" | ||
export * from "./code-gen/fragment-masking" | ||
export * from "./code-gen/gql"; | ||
export * from "./code-gen/graphql"; | ||
export * from "./code-gen/fragment-masking"; |