private-ssr-support.js 827 B

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