MustacheSharp/mustache-sharp/IBuilder.cs

11 lines
195 B
C#
Raw Normal View History

using System;
using System.Text;
namespace mustache
{
internal interface IBuilder
{
void Build(Scope scope, StringBuilder output, IFormatProvider provider);
}
}