1234567891011121314151617181920212223 |
- /**
- * @license
- * Copyright 2017 Google LLC
- * SPDX-License-Identifier: BSD-3-Clause
- */
- import { _$LE as p } from './lit-element.js';
- /**
- * END USERS SHOULD NOT RELY ON THIS OBJECT.
- *
- * We currently do not make a mangled rollup build of the lit-ssr code. In order
- * to keep a number of (otherwise private) top-level exports mangled in the
- * client side code, we export a _$LE object containing those members (or
- * helper methods for accessing private fields of those members), and then
- * re-export them for use in lit-ssr. This keeps lit-ssr agnostic to whether the
- * client-side code is being used in `dev` mode or `prod` mode.
- *
- * @private
- */
- export const _$LE = {
- attributeToProperty: p._$attributeToProperty,
- changedProperties: p._$changedProperties,
- };
- //# sourceMappingURL=private-ssr-support.js.map
|