import { _Widget } from "./WidgetContext"; import { MapOf } from "@implab/core-amd/interfaces"; import { prototype } from "../declare"; /** Special widget used to create a document fragment */ export class DjxFragment implements _Widget { domNode: Node; containerNode: Node; constructor() { this.domNode = this.containerNode = document.createDocumentFragment(); } buildRendering() { // this function marks this class as _Widget } }