using HandlebarsDotNet; namespace Nitride.Handlebars.Configuration; /// /// Describes a dependency injected loader of templates or modules. /// public interface IHandlebarsLoader { /// /// Registers the given helper into the handlebars engine. /// /// The handlebars to register the helper into. void Register(IHandlebars handlebars); }