private-ssr-support.d.ts 883 B

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