(text: string)
| 333 | ) |
| 334 | `); |
| 335 | } |
| 336 | |
| 337 | function codeTag(text: string | number): string { |
| 338 | return `<code>${htmlEscape(String(text))}</code>`; |
| 339 | } |
| 340 | |
| 341 | // 跟踪延迟删除定时器,确保 reload 时可以清理 |
| 342 | const pendingDeleteTimers = new Set<ReturnType<typeof setTimeout>>(); |
| 343 | |
| 344 | class KeywordAlias { |
| 345 | add(fromCid: number, toCid: number): void { |
no outgoing calls
no test coverage detected