idea-toolbox
    Preparing search index...

    Interface PDFTemplateSectionBlueprint

    It represent the blueprint of an inner section of a PDF template blueprint.

    interface PDFTemplateSectionBlueprint {
        context: string;
        description: string;
        icon: string;
        innerBlueprints?: PDFTemplateSectionBlueprint[];
        type: PDFTemplateSectionTypes;
        variables: LabelVariable[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    context: string

    The context to access data of this blueprint's sections.

    description: string

    A description to identify the templates of this blueprint.

    icon: string

    An icon to visually recognize this blueprint's sections.

    innerBlueprints?: PDFTemplateSectionBlueprint[]

    The blueprints of inner sections.

    The type of this blueprint's sections.

    variables: LabelVariable[]

    The variables available in templates of this blueprint.