mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-11 13:54:06 -06:00
21 lines
689 B
Swift
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>
|
|
}
|