Hello 👋 😄
If I write:
import {Builder, RenderFn, AttrValue, Attributes, TemplateView, TemplateBuilder} from "./TemplateView";
All tests pass with no issues. However, if I change this to
export {Builder, RenderFn, AttrValue, Attributes, TemplateView, TemplateBuilder} from "./TemplateView";
(I only switched import to export), I get the following error:
import { Builder, RenderFn, AttrValue, Attributes, TemplateView, TemplateBuilder } from "./TemplateView";
^^^^^^^^^
This is particularly baffling because TemplateView certainly does export AttrValue.
Got this on Impunity 1.0.1 and Node 16.7.0.