nextcloud-desktop/shell_integration/MacOSX/NextcloudIntegration/FileProviderUIExt/ShareViewDataSourceUIDelegate.swift
Claudio Cambra 24ce9a1e1e Add method to show error in data source ui delegate
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
2024-04-17 16:11:50 +08:00

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)
}