This is the archived documentation for Angular v6. Please visit angular.io to see documentation for the current version of Angular.

RequestMatch

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

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

Properties

Property Description
method?: string
url?: string