@tomsd/github-repo-js 0.2.5 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -21052,4 +21052,13 @@ export declare function readyGitHubClasses(token: string): {
21052
21052
  delete(): Promise<void>;
21053
21053
  };
21054
21054
  };
21055
+ GitHubGraphQL: {
21056
+ new (): {
21057
+ get apiEndpoint(): string;
21058
+ doQuery<T = unknown>(requestData: {
21059
+ query: string;
21060
+ variables?: Record<string, unknown>;
21061
+ }): Promise<T>;
21062
+ };
21063
+ };
21055
21064
  };
@@ -0,0 +1,9 @@
1
+ export declare function readyGitHubGraphQL(token: string): {
2
+ new (): {
3
+ get apiEndpoint(): string;
4
+ doQuery<T = unknown>(requestData: {
5
+ query: string;
6
+ variables?: Record<string, unknown>;
7
+ }): Promise<T>;
8
+ };
9
+ };