Skip to content

Commit 0a8882d

Browse files
committed
fix linting
1 parent c01d1a0 commit 0a8882d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/react-docgen/src/utils/__tests__/isReactBuiltinReference-test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import type {
2-
GenericTypeAnnotation,
32
Identifier,
43
MemberExpression,
54
QualifiedTypeIdentifier,
@@ -11,7 +10,7 @@ import type {
1110
import { parse, parseTypescript } from '../../../tests/utils';
1211
import isReactBuiltinReference from '../isReactBuiltinReference.js';
1312
import { describe, expect, test } from 'vitest';
14-
import { NodePath } from '@babel/traverse';
13+
import type { NodePath } from '@babel/traverse';
1514

1615
describe('isReactBuiltinReference', () => {
1716
describe('Commonjs require', () => {

packages/react-docgen/src/utils/__tests__/isUnreachableFlowType-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ImportDeclaration } from '@babel/types';
1+
import type { ImportDeclaration } from '@babel/types';
22
import { parse } from '../../../tests/utils';
33
import isUnreachableFlowType from '../isUnreachableFlowType.js';
44
import { describe, expect, test } from 'vitest';

0 commit comments

Comments
 (0)