summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IElementConfiguration.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/IElementConfiguration.cs')
-rw-r--r--Xamarin.Forms.Core/IElementConfiguration.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/IElementConfiguration.cs b/Xamarin.Forms.Core/IElementConfiguration.cs
new file mode 100644
index 00000000..2086fba7
--- /dev/null
+++ b/Xamarin.Forms.Core/IElementConfiguration.cs
@@ -0,0 +1,8 @@
+
+namespace Xamarin.Forms
+{
+ public interface IElementConfiguration<out TElement> where TElement : Element
+ {
+ IPlatformElementConfiguration<T, TElement> On<T>() where T : IConfigPlatform;
+ }
+}