session-ios/SignalUtilitiesKit/Utilities/ShareViewDelegate.swift
2020-11-17 15:35:52 +11:00

14 lines
341 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: class {
func shareViewWasUnlocked()
func shareViewWasCompleted()
func shareViewWasCancelled()
func shareViewFailed(error: Error)
}