Files
letro-ios/ElementX/Sources/Screens/LabsScreen/LabsScreenViewModelProtocol.swift
2025-10-06 10:12:43 +02:00

15 lines
399 B
Swift

//
// Copyright 2022-2025 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 LabsScreenViewModelProtocol {
var actionsPublisher: AnyPublisher<LabsScreenViewModelAction, Never> { get }
var context: LabsScreenViewModelType.Context { get }
}