Skip to content

Commit 567e023

Browse files
author
Robert Lancer
committed
removed code temp during refactor
1 parent 3591816 commit 567e023

24 files changed

+370
-297
lines changed

.prettierrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"printWidth": 120,
3+
"singleQuote": true,
4+
"semi": false,
5+
"jsxBracketSameLine": true
6+
}

dist/index.d.ts

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
1-
declare const _default: ({ gapiAsJsonSchema, graphQLModule }: {
1+
interface IEntryParams {
22
gapiAsJsonSchema: any;
3-
graphQLModule: any;
4-
}) => {
5-
[x: string]: {
6-
type: any;
7-
args: {} | null;
8-
resolve: (_: any, args: any) => {
9-
rootArgs: any;
10-
rootDefinitions: any;
11-
baseUrl: any;
12-
};
13-
};
14-
};
3+
}
4+
declare const _default: ({ gapiAsJsonSchema }: IEntryParams) => void;
155
export default _default;
166
//# sourceMappingURL=index.d.ts.map

dist/index.d.ts.map

+1-1
Original file line numberDiff line numberDiff line change

dist/index.js

+36-27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/parseSchemas.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ interface ISchema {
44
properties: any;
55
description: any;
66
}
7-
declare const _default: (schemas: Map<string, ISchema>, graphQLModule: any) => {};
7+
declare const _default: (schemas: Map<string, ISchema>) => {};
88
export default _default;
99
//# sourceMappingURL=parseSchemas.d.ts.map

dist/parseSchemas.d.ts.map

+1-1
Original file line numberDiff line numberDiff line change

0 commit comments

Comments
 (0)