2022-07-06 14:49:05 +01:00
|
|
|
//
|
2024-09-06 16:34:30 +03:00
|
|
|
// Copyright 2022-2024 New Vector Ltd.
|
2022-05-10 15:05:56 +03:00
|
|
|
//
|
2025-01-06 11:27:37 +01:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
|
|
// Please see LICENSE files in the repository root for full details.
|
2022-05-10 15:05:56 +03:00
|
|
|
//
|
|
|
|
|
2023-04-05 17:07:12 +02:00
|
|
|
import Combine
|
2022-05-10 15:05:56 +03:00
|
|
|
|
2022-05-25 13:28:19 +03:00
|
|
|
@MainActor
|
2023-04-24 15:03:46 +01:00
|
|
|
protocol TemplateScreenViewModelProtocol {
|
2024-02-28 13:21:54 +02:00
|
|
|
var actionsPublisher: AnyPublisher<TemplateScreenViewModelAction, Never> { get }
|
2023-04-24 15:03:46 +01:00
|
|
|
var context: TemplateScreenViewModelType.Context { get }
|
2022-05-10 15:05:56 +03:00
|
|
|
}
|