// // FloatChatState.swift // TUIRoomKit // // Created by CY zhao on 2024/5/10. // Copyright © 2024 Tencent. All rights reserved. // import Foundation import RTCRoomEngine #if USE_OPENCOMBINE import OpenCombine #else import Combine #endif protocol FloatChatStoreProvider { func dispatch(action: Action) func select(_ selector: Selector) -> AnyPublisher func selectCurrent(_ selector: Selector) -> Value }