orca/src/shared/pty-incarnation.ts

6 lines
199 B
TypeScript

export type PtyIncarnationId = string
export function isPtyIncarnationId(value: unknown): value is PtyIncarnationId {
return typeof value === 'string' && value.length > 0 && value.length <= 128
}