mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 05:25:50 +03:00
24ce9a1e1e
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
17 lines
347 B
Swift
17 lines
347 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()
|
|
func showOptions(share: NKShare)
|
|
func showError(_ errorString: String)
|
|
}
|