@@ -570,16 +570,22 @@ export class VoteGQL extends Apollo.Mutation<VoteMutation, VoteMutationVariables
570570
571571type Omit < T , K extends keyof T > = Pick < T , Exclude < keyof T , K > > ;
572572
573- interface WatchQueryOptionsAlone < V >
574- extends Omit < ApolloCore . WatchQueryOptions < V > , 'query' | 'variables' > { }
573+ interface WatchQueryOptionsAlone < V > extends Omit <
574+ ApolloCore . WatchQueryOptions < V > ,
575+ 'query' | 'variables'
576+ > { }
575577
576578interface QueryOptionsAlone < V > extends Omit < ApolloCore . QueryOptions < V > , 'query' | 'variables' > { }
577579
578- interface MutationOptionsAlone < T , V >
579- extends Omit < ApolloCore . MutationOptions < T , V > , 'mutation' | 'variables' > { }
580+ interface MutationOptionsAlone < T , V > extends Omit <
581+ ApolloCore . MutationOptions < T , V > ,
582+ 'mutation' | 'variables'
583+ > { }
580584
581- interface SubscriptionOptionsAlone < V >
582- extends Omit < ApolloCore . SubscriptionOptions < V > , 'query' | 'variables' > { }
585+ interface SubscriptionOptionsAlone < V > extends Omit <
586+ ApolloCore . SubscriptionOptions < V > ,
587+ 'query' | 'variables'
588+ > { }
583589
584590@Injectable ( { providedIn : 'root' } )
585591export class ApolloAngularSDK {
0 commit comments