mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 15:06:08 +03:00
d23f30ae4e
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
14 lines
256 B
Swift
14 lines
256 B
Swift
//
|
|
// ShareViewDataSourceUIDelegate.swift
|
|
// FileProviderUIExt
|
|
//
|
|
// Created by Claudio Cambra on 28/2/24.
|
|
//
|
|
|
|
import Foundation
|
|
import NextcloudKit
|
|
|
|
protocol ShareViewDataSourceUIDelegate {
|
|
func hideOptions()
|
|
func showOptions(share: NKShare)
|
|
}
|