mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
18 lines
360 B
Swift
18 lines
360 B
Swift
//
|
|
// ShareViewDataSourceUIDelegate.swift
|
|
// FileProviderUIExt
|
|
//
|
|
// Created by Claudio Cambra on 28/2/24.
|
|
//
|
|
|
|
import Foundation
|
|
import NextcloudKit
|
|
|
|
protocol ShareViewDataSourceUIDelegate {
|
|
func fetchStarted()
|
|
func fetchFinished()
|
|
func hideOptions(_ sender: Any)
|
|
func showOptions(share: NKShare)
|
|
func showError(_ errorString: String)
|
|
}
|