├── .eslintrc.js ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── blob.md ├── fetch.md ├── fs.md ├── streams.md └── ws.md ├── example ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── nitroplayground │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── babel.config.js ├── index.js ├── ios │ ├── .xcode.env │ ├── NitroPlayground.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── NitroPlayground.xcscheme │ ├── NitroPlayground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── NitroPlayground │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── PrivacyInfo.xcprivacy │ │ └── main.m │ ├── Podfile │ └── Podfile.lock ├── metro.config.js ├── package.json ├── react-native.config.js ├── server │ ├── createServer.ts │ ├── img.jpg │ ├── index.ts │ └── payloads.ts ├── tests │ ├── benchmark.tsx │ ├── filesystem.tsx │ └── index.tsx └── tsconfig.json ├── package.json ├── packages └── react-native-fast-io │ ├── FastIO.podspec │ ├── README.md │ ├── android │ ├── CMakeLists.txt │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── HybridStreamFactory.cpp │ │ └── cpp-adapter.cpp │ │ └── java │ │ └── com │ │ └── margelo │ │ └── nitro │ │ └── fastio │ │ ├── FastIOPackage.java │ │ ├── HybridDuplexStream.kt │ │ ├── HybridFileSystem.kt │ │ ├── HybridInputStream.kt │ │ ├── HybridNetwork.kt │ │ ├── HybridOutputStream.kt │ │ ├── HybridStreamFactory.kt │ │ ├── HybridWebSocket.kt │ │ └── HybridWebSocketManager.kt │ ├── cpp │ ├── Constants.h │ ├── HybridCompressor.cpp │ ├── HybridCompressor.hpp │ ├── HybridCompressorFactory.cpp │ └── HybridCompressorFactory.hpp │ ├── ios │ ├── BridgingHeader.h │ ├── FastIOPrivate │ │ └── module.modulemap │ ├── HybridDuplexStream.swift │ ├── HybridFileSystem.swift │ ├── HybridInputStream.swift │ ├── HybridNetwork.swift │ ├── HybridOutputStream.swift │ ├── HybridStreamFactory.swift │ ├── HybridWebSocket.swift │ ├── HybridWebSocketManager.swift │ ├── WebSocketDelegate.swift │ └── WebSocketStream.swift │ ├── nitro.json │ ├── nitrogen │ └── generated │ │ ├── android │ │ ├── FastIO+autolinking.cmake │ │ ├── FastIO+autolinking.gradle │ │ ├── FastIOOnLoad.cpp │ │ ├── FastIOOnLoad.hpp │ │ ├── FastIOOnLoad.kt │ │ ├── c++ │ │ │ ├── JFunc_void_double_std__string.hpp │ │ │ ├── JFunc_void_std__shared_ptr_ArrayBuffer_.hpp │ │ │ ├── JFunc_void_std__string.hpp │ │ │ ├── JHybridDuplexStreamSpec.cpp │ │ │ ├── JHybridDuplexStreamSpec.hpp │ │ │ ├── JHybridFileSystemSpec.cpp │ │ │ ├── JHybridFileSystemSpec.hpp │ │ │ ├── JHybridInputStreamSpec.cpp │ │ │ ├── JHybridInputStreamSpec.hpp │ │ │ ├── JHybridNetworkSpec.cpp │ │ │ ├── JHybridNetworkSpec.hpp │ │ │ ├── JHybridOutputStreamSpec.cpp │ │ │ ├── JHybridOutputStreamSpec.hpp │ │ │ ├── JHybridStreamFactorySpec.cpp │ │ │ ├── JHybridStreamFactorySpec.hpp │ │ │ ├── JHybridWebSocketManagerSpec.cpp │ │ │ ├── JHybridWebSocketManagerSpec.hpp │ │ │ ├── JHybridWebSocketSpec.cpp │ │ │ ├── JHybridWebSocketSpec.hpp │ │ │ ├── JMetadata.hpp │ │ │ ├── JNativeFilePickerOptions.hpp │ │ │ ├── JRequestMethod.hpp │ │ │ ├── JRequestOptions.hpp │ │ │ └── JWellKnownDirectory.hpp │ │ └── kotlin │ │ │ └── com │ │ │ └── margelo │ │ │ └── nitro │ │ │ └── fastio │ │ │ ├── Func_void_double_std__string.kt │ │ │ ├── Func_void_std__shared_ptr_ArrayBuffer_.kt │ │ │ ├── Func_void_std__string.kt │ │ │ ├── HybridDuplexStreamSpec.kt │ │ │ ├── HybridFileSystemSpec.kt │ │ │ ├── HybridInputStreamSpec.kt │ │ │ ├── HybridNetworkSpec.kt │ │ │ ├── HybridOutputStreamSpec.kt │ │ │ ├── HybridStreamFactorySpec.kt │ │ │ ├── HybridWebSocketManagerSpec.kt │ │ │ ├── HybridWebSocketSpec.kt │ │ │ ├── Metadata.kt │ │ │ ├── NativeFilePickerOptions.kt │ │ │ ├── RequestMethod.kt │ │ │ ├── RequestOptions.kt │ │ │ └── WellKnownDirectory.kt │ │ ├── ios │ │ ├── FastIO+autolinking.rb │ │ ├── FastIO-Swift-Cxx-Bridge.cpp │ │ ├── FastIO-Swift-Cxx-Bridge.hpp │ │ ├── FastIO-Swift-Cxx-Umbrella.hpp │ │ ├── FastIOAutolinking.mm │ │ ├── FastIOAutolinking.swift │ │ ├── c++ │ │ │ ├── HybridDuplexStreamSpecSwift.cpp │ │ │ ├── HybridDuplexStreamSpecSwift.hpp │ │ │ ├── HybridFileSystemSpecSwift.cpp │ │ │ ├── HybridFileSystemSpecSwift.hpp │ │ │ ├── HybridInputStreamSpecSwift.cpp │ │ │ ├── HybridInputStreamSpecSwift.hpp │ │ │ ├── HybridNetworkSpecSwift.cpp │ │ │ ├── HybridNetworkSpecSwift.hpp │ │ │ ├── HybridOutputStreamSpecSwift.cpp │ │ │ ├── HybridOutputStreamSpecSwift.hpp │ │ │ ├── HybridStreamFactorySpecSwift.cpp │ │ │ ├── HybridStreamFactorySpecSwift.hpp │ │ │ ├── HybridWebSocketManagerSpecSwift.cpp │ │ │ ├── HybridWebSocketManagerSpecSwift.hpp │ │ │ ├── HybridWebSocketSpecSwift.cpp │ │ │ └── HybridWebSocketSpecSwift.hpp │ │ └── swift │ │ │ ├── Func_void.swift │ │ │ ├── Func_void_double_std__string.swift │ │ │ ├── Func_void_std__exception_ptr.swift │ │ │ ├── Func_void_std__shared_ptr_ArrayBuffer_.swift │ │ │ ├── Func_void_std__string.swift │ │ │ ├── Func_void_std__vector_std__string_.swift │ │ │ ├── HybridDuplexStreamSpec.swift │ │ │ ├── HybridDuplexStreamSpec_cxx.swift │ │ │ ├── HybridFileSystemSpec.swift │ │ │ ├── HybridFileSystemSpec_cxx.swift │ │ │ ├── HybridInputStreamSpec.swift │ │ │ ├── HybridInputStreamSpec_cxx.swift │ │ │ ├── HybridNetworkSpec.swift │ │ │ ├── HybridNetworkSpec_cxx.swift │ │ │ ├── HybridOutputStreamSpec.swift │ │ │ ├── HybridOutputStreamSpec_cxx.swift │ │ │ ├── HybridStreamFactorySpec.swift │ │ │ ├── HybridStreamFactorySpec_cxx.swift │ │ │ ├── HybridWebSocketManagerSpec.swift │ │ │ ├── HybridWebSocketManagerSpec_cxx.swift │ │ │ ├── HybridWebSocketSpec.swift │ │ │ ├── HybridWebSocketSpec_cxx.swift │ │ │ ├── Metadata.swift │ │ │ ├── NativeFilePickerOptions.swift │ │ │ ├── RequestMethod.swift │ │ │ ├── RequestOptions.swift │ │ │ └── WellKnownDirectory.swift │ │ └── shared │ │ └── c++ │ │ ├── CompressionAlgorithm.hpp │ │ ├── HybridCompressorFactorySpec.cpp │ │ ├── HybridCompressorFactorySpec.hpp │ │ ├── HybridCompressorSpec.cpp │ │ ├── HybridCompressorSpec.hpp │ │ ├── HybridDuplexStreamSpec.cpp │ │ ├── HybridDuplexStreamSpec.hpp │ │ ├── HybridFileSystemSpec.cpp │ │ ├── HybridFileSystemSpec.hpp │ │ ├── HybridInputStreamSpec.cpp │ │ ├── HybridInputStreamSpec.hpp │ │ ├── HybridNetworkSpec.cpp │ │ ├── HybridNetworkSpec.hpp │ │ ├── HybridOutputStreamSpec.cpp │ │ ├── HybridOutputStreamSpec.hpp │ │ ├── HybridStreamFactorySpec.cpp │ │ ├── HybridStreamFactorySpec.hpp │ │ ├── HybridWebSocketManagerSpec.cpp │ │ ├── HybridWebSocketManagerSpec.hpp │ │ ├── HybridWebSocketSpec.cpp │ │ ├── HybridWebSocketSpec.hpp │ │ ├── Metadata.hpp │ │ ├── NativeFilePickerOptions.hpp │ │ ├── RequestMethod.hpp │ │ ├── RequestOptions.hpp │ │ └── WellKnownDirectory.hpp │ ├── package.json │ ├── src │ ├── index.ts │ ├── native │ │ ├── fs.nitro.ts │ │ ├── network.nitro.ts │ │ ├── streams.nitro.ts │ │ └── ws.nitro.ts │ ├── types │ │ └── fs.ts │ └── w3c │ │ ├── blob.ts │ │ ├── fetch.ts │ │ ├── fs.ts │ │ ├── streams.ts │ │ ├── text.ts │ │ └── ws.ts │ └── tsconfig.json └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/README.md -------------------------------------------------------------------------------- /docs/blob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/docs/blob.md -------------------------------------------------------------------------------- /docs/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/docs/fetch.md -------------------------------------------------------------------------------- /docs/fs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/docs/fs.md -------------------------------------------------------------------------------- /docs/streams.md: -------------------------------------------------------------------------------- 1 | # Streams 2 | 3 | ## Usage 4 | 5 | [TBD] 6 | -------------------------------------------------------------------------------- /docs/ws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/docs/ws.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/nitroplayground/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/java/com/nitroplayground/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/nitroplayground/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/java/com/nitroplayground/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- 1 | export NODE_BINARY=$(command -v node) 2 | -------------------------------------------------------------------------------- /example/ios/NitroPlayground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/ios/NitroPlayground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/NitroPlayground.xcodeproj/xcshareddata/xcschemes/NitroPlayground.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/ios/NitroPlayground.xcodeproj/xcshareddata/xcschemes/NitroPlayground.xcscheme -------------------------------------------------------------------------------- /example/ios/NitroPlayground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/ios/NitroPlayground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/NitroPlayground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/ios/NitroPlayground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/NitroPlayground/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/ios/NitroPlayground/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/NitroPlayground/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/ios/NitroPlayground/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/NitroPlayground/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/ios/NitroPlayground/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/NitroPlayground/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/ios/NitroPlayground/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/NitroPlayground/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/ios/NitroPlayground/Info.plist -------------------------------------------------------------------------------- /example/ios/NitroPlayground/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/ios/NitroPlayground/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/NitroPlayground/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/ios/NitroPlayground/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/ios/NitroPlayground/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/ios/NitroPlayground/main.m -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/server/createServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/server/createServer.ts -------------------------------------------------------------------------------- /example/server/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/server/img.jpg -------------------------------------------------------------------------------- /example/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/server/index.ts -------------------------------------------------------------------------------- /example/server/payloads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/server/payloads.ts -------------------------------------------------------------------------------- /example/tests/benchmark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/tests/benchmark.tsx -------------------------------------------------------------------------------- /example/tests/filesystem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/tests/filesystem.tsx -------------------------------------------------------------------------------- /example/tests/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/tests/index.tsx -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/package.json -------------------------------------------------------------------------------- /packages/react-native-fast-io/FastIO.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/FastIO.podspec -------------------------------------------------------------------------------- /packages/react-native-fast-io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/README.md -------------------------------------------------------------------------------- /packages/react-native-fast-io/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/android/CMakeLists.txt -------------------------------------------------------------------------------- /packages/react-native-fast-io/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/android/build.gradle -------------------------------------------------------------------------------- /packages/react-native-fast-io/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/react-native-fast-io/android/src/main/cpp/HybridStreamFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/android/src/main/cpp/HybridStreamFactory.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/android/src/main/cpp/cpp-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/android/src/main/cpp/cpp-adapter.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/FastIOPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/FastIOPackage.java -------------------------------------------------------------------------------- /packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridDuplexStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridDuplexStream.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridFileSystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridFileSystem.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridInputStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridInputStream.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridNetwork.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridNetwork.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridOutputStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridOutputStream.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridStreamFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridStreamFactory.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridWebSocket.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridWebSocket.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridWebSocketManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/android/src/main/java/com/margelo/nitro/fastio/HybridWebSocketManager.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/cpp/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/cpp/Constants.h -------------------------------------------------------------------------------- /packages/react-native-fast-io/cpp/HybridCompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/cpp/HybridCompressor.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/cpp/HybridCompressor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/cpp/HybridCompressor.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/cpp/HybridCompressorFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/cpp/HybridCompressorFactory.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/cpp/HybridCompressorFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/cpp/HybridCompressorFactory.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/ios/BridgingHeader.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /packages/react-native-fast-io/ios/FastIOPrivate/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/ios/FastIOPrivate/module.modulemap -------------------------------------------------------------------------------- /packages/react-native-fast-io/ios/HybridDuplexStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/ios/HybridDuplexStream.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/ios/HybridFileSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/ios/HybridFileSystem.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/ios/HybridInputStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/ios/HybridInputStream.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/ios/HybridNetwork.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/ios/HybridNetwork.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/ios/HybridOutputStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/ios/HybridOutputStream.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/ios/HybridStreamFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/ios/HybridStreamFactory.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/ios/HybridWebSocket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/ios/HybridWebSocket.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/ios/HybridWebSocketManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/ios/HybridWebSocketManager.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/ios/WebSocketDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/ios/WebSocketDelegate.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/ios/WebSocketStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/ios/WebSocketStream.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitro.json -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/FastIO+autolinking.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/FastIO+autolinking.cmake -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/FastIO+autolinking.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/FastIO+autolinking.gradle -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/FastIOOnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/FastIOOnLoad.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/FastIOOnLoad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/FastIOOnLoad.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/FastIOOnLoad.kt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JFunc_void_double_std__string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JFunc_void_double_std__string.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JFunc_void_std__shared_ptr_ArrayBuffer_.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JFunc_void_std__shared_ptr_ArrayBuffer_.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JFunc_void_std__string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JFunc_void_std__string.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridDuplexStreamSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridDuplexStreamSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridDuplexStreamSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridDuplexStreamSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridFileSystemSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridFileSystemSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridFileSystemSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridFileSystemSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridInputStreamSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridInputStreamSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridInputStreamSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridInputStreamSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridNetworkSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridNetworkSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridNetworkSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridNetworkSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridOutputStreamSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridOutputStreamSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridOutputStreamSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridOutputStreamSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridStreamFactorySpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridStreamFactorySpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridStreamFactorySpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridStreamFactorySpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridWebSocketManagerSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridWebSocketManagerSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridWebSocketManagerSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridWebSocketManagerSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridWebSocketSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridWebSocketSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridWebSocketSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JHybridWebSocketSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JMetadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JMetadata.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JNativeFilePickerOptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JNativeFilePickerOptions.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JRequestMethod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JRequestMethod.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JRequestOptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JRequestOptions.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/c++/JWellKnownDirectory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/c++/JWellKnownDirectory.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/Func_void_double_std__string.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/Func_void_double_std__string.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/Func_void_std__shared_ptr_ArrayBuffer_.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/Func_void_std__shared_ptr_ArrayBuffer_.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/Func_void_std__string.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/Func_void_std__string.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridDuplexStreamSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridDuplexStreamSpec.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridFileSystemSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridFileSystemSpec.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridInputStreamSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridInputStreamSpec.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridNetworkSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridNetworkSpec.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridOutputStreamSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridOutputStreamSpec.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridStreamFactorySpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridStreamFactorySpec.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridWebSocketManagerSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridWebSocketManagerSpec.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridWebSocketSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/HybridWebSocketSpec.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/Metadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/Metadata.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/NativeFilePickerOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/NativeFilePickerOptions.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/RequestMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/RequestMethod.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/RequestOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/RequestOptions.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/WellKnownDirectory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/android/kotlin/com/margelo/nitro/fastio/WellKnownDirectory.kt -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/FastIO+autolinking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/FastIO+autolinking.rb -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/FastIO-Swift-Cxx-Bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/FastIO-Swift-Cxx-Bridge.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/FastIO-Swift-Cxx-Bridge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/FastIO-Swift-Cxx-Bridge.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/FastIO-Swift-Cxx-Umbrella.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/FastIO-Swift-Cxx-Umbrella.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/FastIOAutolinking.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/FastIOAutolinking.mm -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/FastIOAutolinking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/FastIOAutolinking.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridDuplexStreamSpecSwift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridDuplexStreamSpecSwift.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridDuplexStreamSpecSwift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridDuplexStreamSpecSwift.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridFileSystemSpecSwift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridFileSystemSpecSwift.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridFileSystemSpecSwift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridFileSystemSpecSwift.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridInputStreamSpecSwift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridInputStreamSpecSwift.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridInputStreamSpecSwift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridInputStreamSpecSwift.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridNetworkSpecSwift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridNetworkSpecSwift.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridNetworkSpecSwift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridNetworkSpecSwift.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridOutputStreamSpecSwift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridOutputStreamSpecSwift.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridOutputStreamSpecSwift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridOutputStreamSpecSwift.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridStreamFactorySpecSwift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridStreamFactorySpecSwift.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridStreamFactorySpecSwift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridStreamFactorySpecSwift.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridWebSocketManagerSpecSwift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridWebSocketManagerSpecSwift.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridWebSocketManagerSpecSwift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridWebSocketManagerSpecSwift.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridWebSocketSpecSwift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridWebSocketSpecSwift.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridWebSocketSpecSwift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/c++/HybridWebSocketSpecSwift.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/Func_void.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/Func_void.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/Func_void_double_std__string.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/Func_void_double_std__string.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/Func_void_std__exception_ptr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/Func_void_std__exception_ptr.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/Func_void_std__shared_ptr_ArrayBuffer_.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/Func_void_std__shared_ptr_ArrayBuffer_.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/Func_void_std__string.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/Func_void_std__string.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/Func_void_std__vector_std__string_.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/Func_void_std__vector_std__string_.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridDuplexStreamSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridDuplexStreamSpec.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridDuplexStreamSpec_cxx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridDuplexStreamSpec_cxx.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridFileSystemSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridFileSystemSpec.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridFileSystemSpec_cxx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridFileSystemSpec_cxx.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridInputStreamSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridInputStreamSpec.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridInputStreamSpec_cxx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridInputStreamSpec_cxx.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridNetworkSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridNetworkSpec.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridNetworkSpec_cxx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridNetworkSpec_cxx.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridOutputStreamSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridOutputStreamSpec.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridOutputStreamSpec_cxx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridOutputStreamSpec_cxx.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridStreamFactorySpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridStreamFactorySpec.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridStreamFactorySpec_cxx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridStreamFactorySpec_cxx.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridWebSocketManagerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridWebSocketManagerSpec.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridWebSocketManagerSpec_cxx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridWebSocketManagerSpec_cxx.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridWebSocketSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridWebSocketSpec.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridWebSocketSpec_cxx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/HybridWebSocketSpec_cxx.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/Metadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/Metadata.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/NativeFilePickerOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/NativeFilePickerOptions.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/RequestMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/RequestMethod.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/RequestOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/RequestOptions.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/ios/swift/WellKnownDirectory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/ios/swift/WellKnownDirectory.swift -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/CompressionAlgorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/CompressionAlgorithm.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridCompressorFactorySpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridCompressorFactorySpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridCompressorFactorySpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridCompressorFactorySpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridCompressorSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridCompressorSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridCompressorSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridCompressorSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridDuplexStreamSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridDuplexStreamSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridDuplexStreamSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridDuplexStreamSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridFileSystemSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridFileSystemSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridFileSystemSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridFileSystemSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridInputStreamSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridInputStreamSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridInputStreamSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridInputStreamSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridNetworkSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridNetworkSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridNetworkSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridNetworkSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridOutputStreamSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridOutputStreamSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridOutputStreamSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridOutputStreamSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridStreamFactorySpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridStreamFactorySpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridStreamFactorySpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridStreamFactorySpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridWebSocketManagerSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridWebSocketManagerSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridWebSocketManagerSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridWebSocketManagerSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridWebSocketSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridWebSocketSpec.cpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridWebSocketSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/HybridWebSocketSpec.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/Metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/Metadata.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/NativeFilePickerOptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/NativeFilePickerOptions.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/RequestMethod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/RequestMethod.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/RequestOptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/RequestOptions.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/nitrogen/generated/shared/c++/WellKnownDirectory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/nitrogen/generated/shared/c++/WellKnownDirectory.hpp -------------------------------------------------------------------------------- /packages/react-native-fast-io/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/package.json -------------------------------------------------------------------------------- /packages/react-native-fast-io/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/src/index.ts -------------------------------------------------------------------------------- /packages/react-native-fast-io/src/native/fs.nitro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/src/native/fs.nitro.ts -------------------------------------------------------------------------------- /packages/react-native-fast-io/src/native/network.nitro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/src/native/network.nitro.ts -------------------------------------------------------------------------------- /packages/react-native-fast-io/src/native/streams.nitro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/src/native/streams.nitro.ts -------------------------------------------------------------------------------- /packages/react-native-fast-io/src/native/ws.nitro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/src/native/ws.nitro.ts -------------------------------------------------------------------------------- /packages/react-native-fast-io/src/types/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/src/types/fs.ts -------------------------------------------------------------------------------- /packages/react-native-fast-io/src/w3c/blob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/src/w3c/blob.ts -------------------------------------------------------------------------------- /packages/react-native-fast-io/src/w3c/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/src/w3c/fetch.ts -------------------------------------------------------------------------------- /packages/react-native-fast-io/src/w3c/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/src/w3c/fs.ts -------------------------------------------------------------------------------- /packages/react-native-fast-io/src/w3c/streams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/src/w3c/streams.ts -------------------------------------------------------------------------------- /packages/react-native-fast-io/src/w3c/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/src/w3c/text.ts -------------------------------------------------------------------------------- /packages/react-native-fast-io/src/w3c/ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/src/w3c/ws.ts -------------------------------------------------------------------------------- /packages/react-native-fast-io/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/packages/react-native-fast-io/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstackincubator/react-native-fast-io/HEAD/tsconfig.json --------------------------------------------------------------------------------