1 package host.exp.exponent.network
2 
3 interface ExpoResponse {
4   val isSuccessful: Boolean
bodynull5   fun body(): ExpoBody
6   fun code(): Int
7   fun headers(): ExpoHeaders
8   fun networkResponse(): ExpoResponse?
9 }
10