Apply biome formatting fixes

Reorder imports to match biome style guide.
This commit is contained in:
Jared Miller 2026-01-27 21:05:17 -05:00
parent 4b4b434bf8
commit 0f506faa5f
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C
3 changed files with 3 additions and 3 deletions

View file

@ -1,9 +1,9 @@
import { decode } from "./protocol";
import {
type Client,
type WsData,
getOrCreateSession,
getSession,
type WsData,
} from "./session";
const PORT = Number(process.env.PORT) || 4040;

View file

@ -2,10 +2,10 @@ import { afterEach, beforeEach, describe, expect, test } from "bun:test";
import type { ServerMessage } from "./protocol";
import { decode } from "./protocol";
import {
type WsData,
getOrCreateSession,
getSession,
removeSession,
type WsData,
} from "./session";
describe("WebSocket concurrent edits integration", () => {

View file

@ -1,6 +1,6 @@
import { describe, expect, test } from "bun:test";
import * as Y from "yjs";
import { type WsData, getOrCreateSession, Session } from "./session";
import { getOrCreateSession, Session, type WsData } from "./session";
describe("Session", () => {
test("creates yjs doc on init", () => {