17 lines
374 B
Swift
17 lines
374 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#if canImport(UIKit)
|
|
import Foundation
|
|
import UIKit
|
|
|
|
/// A protocol which provides a UI context over which views can be presented
|
|
public protocol DevMenuPresentationContextProvider: AnyObject {
|
|
func devMenuPresentationContext() -> UIWindow
|
|
}
|
|
#endif
|