Badges-TS Documentation
    Preparing search index...

    Interface BadgeConfig

    Interface representing the configuration for creating a badge. This includes properties such as the name of the badge, paths for the template and output, label and value for the badge, color, and any flags or display options that may influence how the badge is generated or displayed.

    interface BadgeConfig {
        color: string;
        display: Display;
        flags: Flags;
        label: string;
        name: string;
        outputPath: string;
        templatePath: string;
        value: string;
    }
    Index

    Properties

    color: string
    display: Display
    flags: Flags
    label: string
    name: string
    outputPath: string
    templatePath: string
    value: string