UNPKG

@surface/custom-element

Version:

Provides support of directives and data binding on custom elements.

8 lines (4 loc) 262 B
import type { IDisposable } from "@surface/core"; import type { DirectiveEntry } from "../../types/index"; type Activator = (parent: Node, host: Node, scope: object, directives: Map<string, DirectiveEntry>) => IDisposable; export default Activator;