GradientEdge CDK Utils
    Preparing search index...

    Interface for rendering workbook templates to files

    interface WorkbookRenderer {
        renderToFile(
            filename: string,
            templateId: string,
            variables: Record<string, any>,
        ): string;
    }

    Implemented by

    Index

    Methods

    Methods

    • Render a workbook template to a file

      Parameters

      • filename: string

        the output filename slug

      • templateId: string

        the template identifier to locate

      • variables: Record<string, any>

        the variables to substitute into the template

      Returns string

      the absolute path to the rendered output file