mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
15 lines
464 B
TypeScript
15 lines
464 B
TypeScript
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 module:workbox-broadcast-update
|
|
*/
|
|
declare const responsesAreSame: (firstResponse: Response, secondResponse: Response, headersToCheck: string[]) => boolean;
|
|
export { responsesAreSame };
|