9 lines
214 B
TypeScript
9 lines
214 B
TypeScript
export * as PtyTicket from "./pty-ticket"
|
|
|
|
import { Schema } from "effect"
|
|
import { PositiveInt } from "./schema"
|
|
|
|
export const ConnectToken = Schema.Struct({
|
|
ticket: Schema.String,
|
|
expires_in: PositiveInt,
|
|
})
|