using System;
namespace mustache
{
///
/// Applies the values of an object to the format plan, generating a string.
///
internal interface IGenerator
{
///
/// Generates the text when applying the format plan.
///
/// The format provider to use when formatting the keys.
/// The current lexical scope of the keys.
/// The generated text.
string GetText(IFormatProvider provider, KeyScope scope);
}
}