UNPKG

ngx-pwa

Version:

Provides functionality around the progressive web app functionality in angular. Most notably the an approach to cache POST, UPDATE and DELETE requests.

10 lines (9 loc) 151 B
/** * Some common http methods. */ export declare enum HttpMethod { POST = "POST", GET = "GET", PATCH = "PATCH", DELETE = "DELETE" }