11 lines
195 B
C#
11 lines
195 B
C#
|
using System;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace mustache
|
|||
|
{
|
|||
|
internal interface IBuilder
|
|||
|
{
|
|||
|
void Build(Scope scope, StringBuilder output, IFormatProvider provider);
|
|||
|
}
|
|||
|
}
|