source: frontend/node_modules/workbox-broadcast-update/responsesAreSame.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 457 bytes
Line 
1import './_version.js';
2/**
3 * Given two `Response's`, compares several header values to see if they are
4 * the same or not.
5 *
6 * @param {Response} firstResponse
7 * @param {Response} secondResponse
8 * @param {Array<string>} headersToCheck
9 * @return {boolean}
10 *
11 * @memberof workbox-broadcast-update
12 */
13declare const responsesAreSame: (firstResponse: Response, secondResponse: Response, headersToCheck: string[]) => boolean;
14export { responsesAreSame };
Note: See TracBrowser for help on using the repository browser.