@@ -9,6 +9,9 @@ export interface Typegen0 {
99 data : unknown ;
1010 __tip : 'See the XState TS docs to learn how to strongly type this.' ;
1111 } ;
12+ 'xstate.after(500)#request.offline' : {
13+ type : 'xstate.after(500)#request.offline' ;
14+ } ;
1215 'xstate.after(CANCEL_TIMEOUT)#request.cancelling' : {
1316 type : 'xstate.after(CANCEL_TIMEOUT)#request.cancelling' ;
1417 } ;
@@ -50,6 +53,7 @@ export interface Typegen0 {
5053 | 'CANCEL'
5154 | 'FACE_INVALID'
5255 | 'FACE_VALID'
56+ | 'OFFLINE'
5357 | 'REJECT'
5458 | 'SCREEN_BLUR'
5559 | 'SCREEN_FOCUS'
@@ -59,6 +63,7 @@ export interface Typegen0 {
5963 | ''
6064 | 'DISCONNECT'
6165 | 'DISMISS'
66+ | 'OFFLINE'
6267 | 'SCREEN_BLUR'
6368 | 'SCREEN_FOCUS'
6469 | 'SWITCH_PROTOCOL'
@@ -76,6 +81,7 @@ export interface Typegen0 {
7681 | 'xstate.after(CLEAR_DELAY)#request.clearingConnection' ;
7782 removeLoggers :
7883 | 'DISMISS'
84+ | 'OFFLINE'
7985 | 'SCREEN_BLUR'
8086 | 'xstate.after(CLEAR_DELAY)#request.clearingConnection'
8187 | 'xstate.init' ;
@@ -117,9 +123,13 @@ export interface Typegen0 {
117123 | 'SCREEN_FOCUS'
118124 | 'SWITCH_PROTOCOL'
119125 | 'xstate.after(CANCEL_TIMEOUT)#request.cancelling' ;
120- checkNetwork : 'APP_ACTIVE' | 'SCREEN_FOCUS' | 'SWITCH_PROTOCOL' ;
126+ checkNetwork :
127+ | 'APP_ACTIVE'
128+ | 'SCREEN_FOCUS'
129+ | 'SWITCH_PROTOCOL'
130+ | 'xstate.after(500)#request.offline' ;
121131 exchangeDeviceInfo : 'RECEIVE_DEVICE_INFO' ;
122- monitorConnection : 'xstate.init' ;
132+ monitorConnection : 'OFFLINE' | ' xstate.init';
123133 receiveVc : 'EXCHANGE_DONE' | 'RECEIVE_DEVICE_INFO' ;
124134 requestBluetooth : 'BLUETOOTH_DISABLED' ;
125135 sendDisconnect : 'CANCEL' ;
0 commit comments