// -----------------------------------------------------------------------
//
// Copyright 2014 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Styling
{
using System;
public interface ITemplatedControl
{
///
/// Gets an observable for a .
///
///
/// The property to get the observable for.
/// The observable.
IObservable GetObservable(PerspexProperty property);
}
}