(instance: any)
| 69 | return typeof instance?.isKnownEvent === 'function'; |
| 70 | } |
| 71 | static cancelled(instance: any): instance is 'Cancelled' { |
| 72 | return instance === 'Cancelled'; |
| 73 | } |
| 74 | static continue(instance: any): instance is undefined { |
| 75 | return instance === undefined; |
| 76 | } |