Skip to content

Commit ba2dee0

Browse files
committed
fix more linting issues
1 parent bcf93ec commit ba2dee0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,15 +199,15 @@ export interface ResolverMap<T> {
199199
*/
200200
export function fastJoin(resolvers: ResolverMap<any> | SyncContextFunction<ResolverMap<any>>, query?: Query | SyncContextFunction<Query>): Hook;
201201

202-
type ResolversFunction = (app: Application, runtime: any) => ResolversObject;
202+
export type ResolversFunction = (app: Application, runtime: any) => ResolversObject;
203203

204204
export interface ResolversObject {
205205
[i: string]: {
206206
[i: string]: (parent: any, args: any, content: any, ast: any) => any;
207207
};
208208
Query: {
209209
[i: string]: (parent: any, args: any, content: any, ast: any) => any;
210-
}
210+
};
211211
}
212212

213213
export interface FGraphqlOptions {
@@ -222,7 +222,7 @@ export interface FGraphqlOptions {
222222
inclJoinedNames?: boolean;
223223
extraAuthProps?: string[];
224224
runTime: any;
225-
parse: typeof parse
225+
parse: typeof parse;
226226
}
227227

228228
/**

0 commit comments

Comments
 (0)