polyfill-support.d.ts 631 B

123456789101112131415161718
  1. /**
  2. * @license
  3. * Copyright 2017 Google LLC
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. /**
  7. * ReactiveElement patch to support browsers without native web components.
  8. *
  9. * This module should be used in addition to loading the web components
  10. * polyfills via @webcomponents/webcomponentjs. When using those polyfills
  11. * support for polyfilled Shadow DOM is automatic via the ShadyDOM polyfill, but
  12. * support for Shadow DOM like css scoping is opt-in. This module uses ShadyCSS
  13. * to scope styles defined via the `static styles` property.
  14. *
  15. * @packageDocumentation
  16. */
  17. export {};
  18. //# sourceMappingURL=polyfill-support.d.ts.map