@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Type Alias MissingKeyBehavior

    MissingKeyBehavior: "keep" | "empty" | "error" | ((key: string) => string)

    Controls how a template processor reacts when a block references a key that does not exist in the expansion context.

    • "keep" keeps the original XML block in place.
    • "empty" replaces the block with an empty string.
    • "error" throws a RangeError.
    • A function receives the missing key and returns a replacement string.