summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IElementConfiguration.cs
blob: 2086fba7bd119c8911b577232e8be80b31f09274 (plain)
1
2
3
4
5
6
7
8

namespace Xamarin.Forms
{
	public interface IElementConfiguration<out TElement> where TElement : Element
	{
		IPlatformElementConfiguration<T, TElement> On<T>() where T : IConfigPlatform;
	}
}