(text: string)
| 109 | export const joinText = (parts: ReadonlyArray<{ readonly text: string }>) => parts.map((part) => part.text).join("\n") |
| 110 | |
| 111 | const escapeSystemUpdateText = (text: string) => |
| 112 | text.replaceAll("&", "&").replaceAll("<", "<").replaceAll(">", ">") |
| 113 | |
| 114 | /** |
| 115 | * Stable fallback representation for chronological `Message.system(...)` |