mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
11 lines
252 B
C#
11 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);
|
|
}
|
|
}
|