refactor(schema): simplify pty imports

This commit is contained in:
Kit Langton
2026-06-24 22:46:29 -04:00
parent 36ddebf770
commit 3497c2dfe9
+1 -2
View File
@@ -3,8 +3,7 @@ export * as Pty from "./pty"
import { Schema } from "effect"
import { define, inventory } from "./event"
import { ascending } from "./identifier"
import { NonNegativeInt, PositiveInt } from "./schema"
import { statics } from "./schema"
import { NonNegativeInt, PositiveInt, statics } from "./schema"
const IDSchema = Schema.String.check(Schema.isStartsWith("pty")).pipe(Schema.brand("PtyID"))