TM-SGNL-iOS/SignalShareExtension/ShareViewDelegate.swift
TeleMessage developers dde0620daf initial commit
2025-05-03 12:28:28 -07:00

16 lines
451 B
Swift

//
// Copyright 2017 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
import Foundation
public 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 }
}