mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
23 lines
651 B
C#
23 lines
651 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IDeviceActionService
|
|
{
|
|
void CopyToClipboard(string text);
|
|
bool OpenFile(byte[] fileData, string id, string fileName);
|
|
bool CanOpenFile(string fileName);
|
|
Task SelectFileAsync();
|
|
void ClearCache();
|
|
void Autofill(Models.Page.VaultListPageModel.Cipher cipher);
|
|
void CloseAutofill();
|
|
void Background();
|
|
void RateApp();
|
|
void DismissKeyboard();
|
|
void OpenAccessibilitySettings();
|
|
void OpenAutofillSettings();
|
|
void LaunchApp(string appName);
|
|
}
|
|
}
|