(value: unknown)
| 75 | } |
| 76 | |
| 77 | function isResourceType(value: unknown): value is MothershipResource['type'] { |
| 78 | return ( |
| 79 | typeof value === 'string' && |
| 80 | Object.values(MothershipResourceType).some((type) => type === value) |
| 81 | ) |
| 82 | } |
| 83 | |
| 84 | function parseStreamSnapshot(value: unknown): MothershipChatHistory['streamSnapshot'] { |
| 85 | if (!isRecordLike(value)) { |