(value: unknown)
| 31 | readonly message: string |
| 32 | } |
| 33 | export const isSessionNotFoundError = (value: unknown): value is SessionNotFoundError => |
| 34 | typeof value === "object" && value !== null && "_tag" in value && value["_tag"] === "SessionNotFoundError" |
| 35 | |
| 36 | export type ConflictError = { |
| 37 | readonly _tag: "ConflictError" |