Skip to content

Commit 0ffbc35

Browse files
committed
fix: type import
1 parent 5a33e1d commit 0ffbc35

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

packages/core/src/batch.ts

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
import { Deferred, invariant, never, ResultAsync } from '@aave/types';
1+
import {
2+
type AnyVariables,
3+
Deferred,
4+
invariant,
5+
never,
6+
ResultAsync,
7+
} from '@aave/types';
28
import type { TypedDocumentNode } from '@urql/core';
39
import {
410
type DocumentNode,
@@ -10,9 +16,8 @@ import {
1016
type VariableDefinitionNode,
1117
visit,
1218
} from 'graphql';
13-
1419
import { UnexpectedError } from './errors';
15-
import type { AnyVariables, StandardData } from './types';
20+
import type { StandardData } from './types';
1621

1722
interface StoredQuery<TValue, TVariables extends AnyVariables> {
1823
alias: string;

0 commit comments

Comments
 (0)