Signal-iOS/SignalUI/UI/ShareViewDelegate.swift
2021-10-19 09:39:52 -03:00

17 lines
441 B
Swift

//
// Copyright (c) 2021 Open Whisper Systems. All rights reserved.
//
import Foundation
import SignalMessaging
// All Observer methods will be invoked from the main thread.
@objc
public protocol ShareViewDelegate: AnyObject {
func shareViewWasUnlocked()
func shareViewWasCompleted()
func shareViewWasCancelled()
func shareViewFailed(error: Error)
var shareViewNavigationController: OWSNavigationController? { get }
}