amplify-swift/Amplify/DevMenu/Trigger/TriggerDelegate.swift

17 lines
378 B
Swift

//
// Copyright Amazon.com Inc. or its affiliates.
// All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
//
#if canImport(UIKit)
import Foundation
/// Implement this protocol to get notified of the trigger events recognized by
/// a `TriggerRecognizer`
public protocol TriggerDelegate: AnyObject {
func onTrigger(triggerRecognizer: TriggerRecognizer)
}
#endif