Interface TemplateEngineInput<T>

Utility interface for representing TemplateEngine input.

interface TemplateEngineInput<T> {
    contents: T;
    template?: Template;
}

Type Parameters

  • T

Properties

Properties

contents: T
template?: Template