@surface/custom-element
Version:
Provides support of directives and data binding on custom elements.
11 lines (9 loc) • 334 B
TypeScript
import type { IExpression } from "@surface/expression";
import type IObservable from "../interfaces/observable";
import type ITraceable from "../interfaces/traceable";
type TextNodeDescriptor =
{
expression: IExpression,
path: string,
} & IObservable & ITraceable;
export default TextNodeDescriptor;