17 lines
309 B
Swift
17 lines
309 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#if canImport(UIKit)
|
|
import Foundation
|
|
|
|
/// A protocol describing the behaviors of a Developer Menu
|
|
public protocol DevMenuBehavior {
|
|
/// Display the menu
|
|
func showMenu()
|
|
}
|
|
#endif
|