Nutrient Web SDK
    Preparing search index...

    Type Alias TemplateDataToPopulateDocument

    Describes the data format used to populate a document template.

    type TemplateDataToPopulateDocument = {
        config: { delimiter: { end: string; start: string } };
        model: Record<string, unknown>[];
    }
    Index

    Properties

    Properties

    config: { delimiter: { end: string; start: string } }

    The configuration used to populate the document template.

    Type Declaration

    • delimiter: { end: string; start: string }

      The delimiter settings used in data parsing.

      • end: string

        The end delimiter for data parsing.

      • start: string

        The start delimiter for data parsing.

    model: Record<string, unknown>[]

    The data used to populate the document template.