File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -199,15 +199,15 @@ export interface ResolverMap<T> {
199
199
*/
200
200
export function fastJoin ( resolvers : ResolverMap < any > | SyncContextFunction < ResolverMap < any > > , query ?: Query | SyncContextFunction < Query > ) : Hook ;
201
201
202
- type ResolversFunction = ( app : Application , runtime : any ) => ResolversObject ;
202
+ export type ResolversFunction = ( app : Application , runtime : any ) => ResolversObject ;
203
203
204
204
export interface ResolversObject {
205
205
[ i : string ] : {
206
206
[ i : string ] : ( parent : any , args : any , content : any , ast : any ) => any ;
207
207
} ;
208
208
Query : {
209
209
[ i : string ] : ( parent : any , args : any , content : any , ast : any ) => any ;
210
- }
210
+ } ;
211
211
}
212
212
213
213
export interface FGraphqlOptions {
@@ -222,7 +222,7 @@ export interface FGraphqlOptions {
222
222
inclJoinedNames ?: boolean ;
223
223
extraAuthProps ?: string [ ] ;
224
224
runTime : any ;
225
- parse : typeof parse
225
+ parse : typeof parse ;
226
226
}
227
227
228
228
/**
You can’t perform that action at this time.
0 commit comments