index.mjs 556 B

12345678910111213141516171819202122232425
  1. /*
  2. Copyright 2018 Google LLC
  3. Use of this source code is governed by an MIT-style
  4. license that can be found in the LICENSE file or at
  5. https://opensource.org/licenses/MIT.
  6. */
  7. import {BroadcastCacheUpdate} from './BroadcastCacheUpdate.mjs';
  8. import {Plugin} from './Plugin.mjs';
  9. import {broadcastUpdate} from './broadcastUpdate.mjs';
  10. import {responsesAreSame} from './responsesAreSame.mjs';
  11. import './_version.mjs';
  12. /**
  13. * @namespace workbox.broadcastUpdate
  14. */
  15. export {
  16. BroadcastCacheUpdate,
  17. Plugin,
  18. broadcastUpdate,
  19. responsesAreSame,
  20. };