18 lines
631 B
TypeScript
18 lines
631 B
TypeScript
|
/**
|
||
|
* @license
|
||
|
* Copyright 2017 Google LLC
|
||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||
|
*/
|
||
|
/**
|
||
|
* ReactiveElement patch to support browsers without native web components.
|
||
|
*
|
||
|
* This module should be used in addition to loading the web components
|
||
|
* polyfills via @webcomponents/webcomponentjs. When using those polyfills
|
||
|
* support for polyfilled Shadow DOM is automatic via the ShadyDOM polyfill, but
|
||
|
* support for Shadow DOM like css scoping is opt-in. This module uses ShadyCSS
|
||
|
* to scope styles defined via the `static styles` property.
|
||
|
*
|
||
|
* @packageDocumentation
|
||
|
*/
|
||
|
export {};
|
||
|
//# sourceMappingURL=polyfill-support.d.ts.map
|