Signal-iOS/SignalShareExtension/ShareViewDelegate.swift
2024-03-25 14:22:28 -05:00

17 lines
444 B
Swift

//
// Copyright 2017 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
import Foundation
import SignalUI
// All Observer methods will be invoked from the main thread.
public protocol ShareViewDelegate: AnyObject {
func shareViewWasUnlocked()
func shareViewWasCompleted()
func shareViewWasCancelled()
func shareViewFailed(error: Error)
var shareViewNavigationController: OWSNavigationController? { get }
}