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

    Type Alias HttpMethod

    HttpMethod:
        | "GET"
        | "POST"
        | "PUT"
        | "PATCH"
        | "DELETE"
        | "HEAD"
        | "OPTIONS"
        | "CONNECT"
        | "TRACE"
        | string & {}

    HTTP method for Caddy's method matcher. Not a closed set -- real Caddy's MatchMethod accepts any string (see HttpMethodSchema in schemas.ts for the caddy-validate verification) -- so this keeps IDE autocomplete for the common methods via (string & {}) while still accepting any string.