summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IPlatformElementConfiguration.cs
blob: 43083d3463a0f3408dcefcba97cbbbf481f73f6a (plain)
1
2
3
4
5
6
7
8
9

namespace Xamarin.Forms
{
	public interface IPlatformElementConfiguration<out TPlatform, out TElement> : IConfigElement<TElement>
			where TPlatform : IConfigPlatform
	 		where TElement : Element
	{
	}
}