taggedjs
Version:
tagged template reactive html
12 lines (11 loc) • 373 B
TypeScript
import { InterpolateSubject } from '../tag/update/processFirstSubject.utils.js';
import { AnySupport } from '../tag/AnySupport.type.js';
export type Template = Element & {
content: any;
};
export type InterpolateComponentResult = {
subject: InterpolateSubject;
insertBefore: Element | Text | Template;
ownerSupport: AnySupport;
variableName: string;
};