UNPKG

@protorians/widgets

Version:

Create your web user interfaces with widgets

8 lines (7 loc) 293 B
import type { IEngine } from "./engine.js"; import type { IAttributes } from "./attributes.js"; import type { IWidgetNode } from "./widget.js"; export interface IWidgetDirectiveContent<E extends HTMLElement, A extends IAttributes> { engine: IEngine<E, A>; widget: IWidgetNode<E, A>; }