UNPKG

@surface/custom-element

Version:

Provides support of directives and data binding on custom elements.

12 lines (10 loc) 309 B
import type Expression from "./expression"; import type Factory from "./fatctory"; import type ObservablePath from "./observable-path"; type BranchStatement = { expression: Expression, observables: ObservablePath[], factory: Factory, }; export default BranchStatement;