Skip to content

Commit 716225e

Browse files
committed
revert type
1 parent ba15eb8 commit 716225e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/commands/types.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -245,15 +245,15 @@ export interface GetConnectivityResult {
245245
/**
246246
* True if wifi is enabled
247247
*/
248-
wifi?: boolean;
248+
wifi: boolean;
249249
/**
250250
* True if mobile data connection is enabled
251251
*/
252-
data?: boolean;
252+
data: boolean;
253253
/**
254254
* True if Airplane Mode is enabled
255255
*/
256-
airplaneMode?: boolean;
256+
airplaneMode: boolean;
257257
}
258258

259259
export type ServiceType = 'wifi' | 'data' | 'airplaneMode';

0 commit comments

Comments
 (0)