1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-31 07:33:46 +00:00
Files
mobile/src/App/Abstractions/Services/IReflectionService.cs

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