From 9a8f45bd4a1037ef506de7c1476e4c73aaa7c9fd Mon Sep 17 00:00:00 2001 From: Lars den Bakker Date: Wed, 23 Oct 2019 15:33:56 +0200 Subject: [PATCH] fix(core): export Part classes from lit-html (#340) --- packages/core/index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/core/index.js b/packages/core/index.js index 8a418776c..f4e80eeaf 100644 --- a/packages/core/index.js +++ b/packages/core/index.js @@ -14,6 +14,12 @@ export { isDirective, TemplateResult, SVGTemplateResult, + AttributePart, + BooleanAttributePart, + EventPart, + NodePart, + PropertyPart, + isPrimitive, } from 'lit-html'; export { render as renderShady } from 'lit-html/lib/shady-render.js'; export { asyncAppend } from 'lit-html/directives/async-append.js';