From 494fe20b5a6bfafb24d6a272fb90a94e1766a6cd Mon Sep 17 00:00:00 2001 From: Shai Mishali Date: Wed, 23 Aug 2023 15:51:11 +0300 Subject: [PATCH] Add a public Observable alias to overcome Xcode 15 bug --- Source/RxCocoa/not+RxCocoa.swift | 1 + Source/Tools/Observable+Alias.swift | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 Source/Tools/Observable+Alias.swift diff --git a/Source/RxCocoa/not+RxCocoa.swift b/Source/RxCocoa/not+RxCocoa.swift index dbb809bb..e378d3a4 100644 --- a/Source/RxCocoa/not+RxCocoa.swift +++ b/Source/RxCocoa/not+RxCocoa.swift @@ -7,6 +7,7 @@ // import RxCocoa +import RxSwift extension SharedSequenceConvertibleType where Element == Bool { /// Boolean not operator. diff --git a/Source/Tools/Observable+Alias.swift b/Source/Tools/Observable+Alias.swift new file mode 100644 index 00000000..34812808 --- /dev/null +++ b/Source/Tools/Observable+Alias.swift @@ -0,0 +1,10 @@ +// +// File.swift +// +// +// Created by Shai Mishali on 23/08/2023. +// + +import RxSwift + +public typealias Observable = RxSwift.Observable