refactor(tui): format screen imports

Keep screen.ts import ordering aligned with the ui-tui formatter.
This commit is contained in:
Brooklyn Nicholson
2026-04-25 15:26:51 -05:00
parent bd66e55a02
commit b1c18e5a41

View File

@@ -1,6 +1,6 @@
import { type AnsiCode, ansiCodesToString, diffAnsiCodes } from '@alcalzone/ansi-tokenize'
import { ansiCodesToString, diffAnsiCodes, type AnsiCode } from '@alcalzone/ansi-tokenize'
import { type Point, type Rectangle, type Size, unionRect } from './layout/geometry.js'
import { unionRect, type Point, type Rectangle, type Size } from './layout/geometry.js'
import { BEL, ESC, SEP } from './termio/ansi.js'
import * as warn from './warn.js'