index.mjs 430 B

1234567891011121314151617181920212223
  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 {disable} from './disable.mjs';
  8. import {enable} from './enable.mjs';
  9. import {isSupported} from './isSupported.mjs';
  10. import './_version.mjs';
  11. /**
  12. * @namespace workbox.navigationPreload
  13. */
  14. export {
  15. disable,
  16. enable,
  17. isSupported,
  18. };