Interface RenderStep<RenderContext>

A render step.

This is a function that renders a template with a context.

interface RenderStep<RenderContext> {
    filename: string;
    (ctx: RenderContext): Promise<void>;
}

Type Parameters

  • RenderContext

    The context type.

Hierarchy (view full)

Properties

Properties

filename: string

The filename of the template.