You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
457 B
14 lines
457 B
import './_version.js'; |
|
/** |
|
* Given two `Response's`, compares several header values to see if they are |
|
* the same or not. |
|
* |
|
* @param {Response} firstResponse |
|
* @param {Response} secondResponse |
|
* @param {Array<string>} headersToCheck |
|
* @return {boolean} |
|
* |
|
* @memberof workbox-broadcast-update |
|
*/ |
|
declare const responsesAreSame: (firstResponse: Response, secondResponse: Response, headersToCheck: string[]) => boolean; |
|
export { responsesAreSame };
|
|
|