(s: string)
| 43 | const sessionEventsSummaryResponseSchema = z.object({ |
| 44 | events: z.array( |
| 45 | z.object({ |
| 46 | type: z.literal("token"), |
| 47 | data: z.object({ |
| 48 | content: z.string(), |
| 49 | }), |
| 50 | }) |
| 51 | ), |
| 52 | }); |
| 53 | |
| 54 | export function escapeHtml(s: string): string { |
no outgoing calls
no test coverage detected