@accelerated-software-development/caddy-api-client - v0.4.3
    Preparing search index...

    Variable MatchHeaderSchemaConst

    MatchHeaderSchema: ZodRecord<ZodString, ZodArray<ZodString, "many">> = ...

    Header matcher - validates HTTP header matching

    import { MatchHeaderSchema } from "@accelerated-software-development/caddy-api-client";

    // Match requests with specific headers
    const headers = MatchHeaderSchema.parse({
    "Content-Type": ["application/json"],
    "Accept": ["application/json", "text/plain"]
    });