Skip to content

Commit 79ac3c6

Browse files
committed
test: lint
1 parent 8fbfc38 commit 79ac3c6

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

packages/vue-apollo/types/vue-apollo.d.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ interface SmartApollo<V> {
3232
}
3333

3434
type PickedObservableQuery<TData, TVariables> = Pick<
35-
ObservableQuery<TData, TVariables>,
36-
'fetchMore' |
37-
'subscribeToMore' |
38-
'refetch' |
39-
'setVariables' |
40-
'setOptions' |
41-
'startPolling' |
42-
'stopPolling'
35+
ObservableQuery<TData, TVariables>,
36+
'fetchMore' |
37+
'subscribeToMore' |
38+
'refetch' |
39+
'setVariables' |
40+
'setOptions' |
41+
'startPolling' |
42+
'stopPolling'
4343
>
4444

45-
export interface SmartQuery<V, TData = {}, TVariables = {}>
45+
export interface SmartQuery<V, TData = any, TVariables = any>
4646
extends SmartApollo<V>,
47-
PickedObservableQuery<TData, TVariables> {
47+
PickedObservableQuery<TData, TVariables> {
4848
loading: boolean
4949
}
5050

0 commit comments

Comments
 (0)