index.js 695 B

12345678910111213141516171819
  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 { NavigationRoute } from './NavigationRoute.js';
  8. import { RegExpRoute } from './RegExpRoute.js';
  9. import { registerRoute } from './registerRoute.js';
  10. import { Route } from './Route.js';
  11. import { Router } from './Router.js';
  12. import { setCatchHandler } from './setCatchHandler.js';
  13. import { setDefaultHandler } from './setDefaultHandler.js';
  14. import './_version.js';
  15. /**
  16. * @module workbox-routing
  17. */
  18. export { NavigationRoute, RegExpRoute, registerRoute, Route, Router, setCatchHandler, setDefaultHandler, };