mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 16:02:32 +00:00
6 lines
199 B
TypeScript
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
|
|
}
|