UNPKG

@zyrab/domo

Version:

Minimalist DOM builder and chaining-friendly micro-framework with router support.

18 lines (15 loc) 346 B
import ChildrenClient from "./children.client.js"; /** * @class BuilderClient * @extends ChildrenClient */ class BuilderClient extends ChildrenClient { /** * Finalizes the element construction and returns the native DOM element. * @returns {HTMLElement} */ build() { return this.element; } } export default BuilderClient;