| 89 | | ErroredEvent; |
| 90 | |
| 91 | interface ApplyOptions { |
| 92 | ignoreUnaccepted?: boolean; |
| 93 | ignoreDeclined?: boolean; |
| 94 | ignoreErrored?: boolean; |
| 95 | onDeclined?: (event: DeclinedEvent) => void; |
| 96 | onUnaccepted?: (event: UnacceptedEvent) => void; |
| 97 | onAccepted?: (event: AcceptedEvent) => void; |
| 98 | onDisposed?: (event: DisposedEvent) => void; |
| 99 | onErrored?: (event: ErroredEvent) => void; |
| 100 | } |
| 101 | |
| 102 | const enum HotUpdateStatus { |
| 103 | idle = "idle", |
nothing calls this directly
no outgoing calls
no test coverage detected