igcv3 - v1.1.0
    Preparing search index...

    Variable StatusConst

    Status: {
        success: (msg: string) => string;
        error: (msg: string) => string;
        warn: (msg: string) => string;
        info: (msg: string) => string;
    } = ...

    Status display helpers for UI output (distinct from Logger which handles operational logs). Use these for displaying validation results, match/mismatch states, and structured output.

    Type Declaration

    • success: (msg: string) => string

      Green checkmark with message

    • error: (msg: string) => string

      Red cross with message

    • warn: (msg: string) => string

      Yellow warning with message

    • info: (msg: string) => string

      Blue info with message