* trying to debug why sometimes the value is missing even if it appears in the room list * static room provider implementation * set the page size through the init * removed reset filters on .cancel since using the sop function is safer
17 lines
435 B
Swift
17 lines
435 B
Swift
//
|
|
// Copyright 2022-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import Combine
|
|
|
|
@MainActor
|
|
protocol GlobalSearchScreenViewModelProtocol {
|
|
var actions: AnyPublisher<GlobalSearchScreenViewModelAction, Never> { get }
|
|
var context: GlobalSearchScreenViewModelType.Context { get }
|
|
|
|
func stop()
|
|
}
|