continue tidying

This commit is contained in:
Your Name
2026-04-09 18:04:33 +00:00
parent 264fffbe81
commit 2f8ea41aeb
10 changed files with 7 additions and 57 deletions
@@ -49,9 +49,11 @@ export function isUserPrompt(node: IrNode): node is UserPrompt {
export function isSystemEvent(node: IrNode): node is SystemEvent {
return node.type === 'SYSTEM_EVENT';
}
export function isSnapshot(node: IrNode): node is Snapshot {
return node.type === 'SNAPSHOT';
}
export function isRollingSummary(node: IrNode): node is RollingSummary {
return node.type === 'ROLLING_SUMMARY';
}