chore: remove unnecessary semi

This commit is contained in:
Guillaume Chau 2019-11-29 10:38:32 +01:00
parent 114881dc4a
commit 7a0c025718

View File

@ -13,8 +13,8 @@ export interface UseQueryOptions<
TResult = any,
TVariables = OperationVariables
> extends Omit<WatchQueryOptions<TVariables>, 'query' | 'variables'> {
clientId?: string,
enabled?: boolean,
clientId?: string
enabled?: boolean
}
export function useQuery<