ssap_app/node_modules/expo/ios/Fetch/ExpoFetchCustomExtension.swift

13 lines
440 B
Swift

// Copyright 2015-present 650 Industries. All rights reserved.
/**
For callsites to customize network fetch functionalities like having custom `URLSessionConfiguration`.
*/
@objc(EXFetchCustomExtension)
public class ExpoFetchCustomExtension: NSObject {
@MainActor @objc
public static func setCustomURLSessionConfigurationProvider(_ provider: NSURLSessionConfigurationProvider?) {
urlSessionConfigurationProvider = provider
}
}