session-ios/SignalUtilitiesKit/Utilities/ShareViewDelegate.swift

14 lines
345 B
Swift

//
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
//
import Foundation
// 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)
}