mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-25 04:35:37 -04:00
11 lines
352 B
TypeScript
11 lines
352 B
TypeScript
export * as PtyTicket from "./pty-ticket.js"
|
|
|
|
import { Schema } from "effect"
|
|
import { PositiveInt } from "./schema.js"
|
|
|
|
export const ConnectToken = Schema.Struct({
|
|
ticket: Schema.String,
|
|
expires_in: PositiveInt,
|
|
}).annotate({ identifier: "PtyTicket.ConnectToken" })
|
|
export interface ConnectToken extends Schema.Schema.Type<typeof ConnectToken> {}
|