Skip to content

Commit 341cc53

Browse files
committed
chore: fix linter errors
1 parent a9b1933 commit 341cc53

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/core/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
import { eventSystem } from "../events";
66
import {
7+
type FiberRoot,
78
createFiberRoot,
89
getFiberRoot,
910
hasFiberRoot,
1011
scheduleUpdateOnFiber,
11-
type FiberRoot,
1212
} from "../fiber";
1313
import {
1414
type AnyMiniReactElement,

src/fiber/completeWork.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
*/
1717

1818
import {
19+
type ElementType,
1920
FRAGMENT,
21+
type JSXElementType,
2022
PORTAL,
2123
TEXT_ELEMENT,
22-
type ElementType,
23-
type JSXElementType,
2424
} from "../core/types";
2525
import type { VDOMInstance } from "../core/types";
2626
import { eventSystem } from "../events";

tests/fiber/integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212

1313
import { beforeEach, describe, expect, test } from "bun:test";
1414
import {
15+
type AnyMiniReactElement,
1516
FRAGMENT,
1617
TEXT_ELEMENT,
17-
type AnyMiniReactElement,
1818
} from "../../src/core/types";
1919
import { createFiberRoot, scheduleUpdateOnFiber } from "../../src/fiber";
2020
import type { Fiber } from "../../src/fiber";

0 commit comments

Comments
 (0)