Defines a matcher for requests based on URL, method, or both.

interface RequestMatch {
    method?: string;
    url?: string;
}

Properties

Properties

method?: string
url?: string