mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
12 lines
252 B
C#
12 lines
252 B
C#
|
using System;
|
|||
|
using Bit.App.Controls;
|
|||
|
using Xamarin.Forms;
|
|||
|
|
|||
|
namespace Bit.App.Abstractions
|
|||
|
{
|
|||
|
public interface IReflectionService
|
|||
|
{
|
|||
|
Func<double, double, SizeRequest> GetVisualElementOnSizeRequest(ExtendedTableView tableView);
|
|||
|
}
|
|||
|
}
|