schema-components - v3.7.0
    Preparing search index...

    Type Alias MethodKeysWithFallback<D, P>

    MethodKeysWithFallback: [
        MethodKeysFromPaths<D, P>
        | MethodKeysFromWebhooks<D, P>,
    ] extends [never]
        ? HttpMethod
        : MethodKeysFromPaths<D, P> | MethodKeysFromWebhooks<D, P>

    Union of literal methods extracted from paths[P] and webhooks[P], falling back to the canonical HttpMethod set when neither map declares the requested entry.

    Type Parameters

    • D
    • P extends string