ios/BitwardenKit/UI/Platform/DebugMenu/DebugMenuModule.swift
2025-12-09 12:09:44 -06:00

21 lines
689 B
Swift

import BitwardenKit
import Foundation
// MARK: - DebugMenuModule
/// An object that builds coordinator for the debug menu.
@MainActor
public protocol DebugMenuModule {
/// Initializes a coordinator for navigating between `DebugMenuRoute`s.
///
/// - Parameters:
/// - delegate: The delegate for the debug menu coordinator.
/// - stackNavigator: The stack navigator that will be used to navigate between routes.
/// - Returns: A coordinator that can navigate to `DebugMenuRoute`s.
///
func makeDebugMenuCoordinator(
delegate: DebugMenuCoordinatorDelegate,
stackNavigator: StackNavigator,
) -> AnyCoordinator<DebugMenuRoute, Void>
}