12 lines
229 B
Swift
12 lines
229 B
Swift
// Copyright 2015-present 650 Industries. All rights reserved.
|
|
|
|
/**
|
|
Native data for ResponseInit.
|
|
*/
|
|
internal struct NativeResponseInit {
|
|
let headers: [[String]]
|
|
let status: Int
|
|
let statusText: String
|
|
let url: String
|
|
}
|