import type { Attribute } from '../utils/ast.js'; import { html } from '../tags/tags.js'; /** * The render context for MixElements * * @example * render({html}) { * return html`

Hello

`; * } */ export interface ElementContext { html: typeof html; attrs: Record; attributes: Attribute[]; }