UNPKG

@roukara/nodo

Version:

A class designed to facilitate the manipulation of DOM elements within web pages.

14 lines (13 loc) 290 B
interface NodoProps { [key: string]: any; } export default class Nodo<T extends HTMLElement> { el: T; props: NodoProps; refs: { [key: string]: HTMLElement | HTMLElement[]; }; constructor(el: string | T, props?: NodoProps); private findRefs; } export {};