index.js 522 B

12345678910111213141516
  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 { BackgroundSyncPlugin } from './BackgroundSyncPlugin.js';
  8. import { Queue } from './Queue.js';
  9. import { QueueStore } from './QueueStore.js';
  10. import { StorableRequest } from './StorableRequest.js';
  11. import './_version.js';
  12. /**
  13. * @module workbox-background-sync
  14. */
  15. export { BackgroundSyncPlugin, Queue, QueueStore, StorableRequest };