aurelia-templating-binding
Version:
An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.
13 lines (11 loc) • 351 B
TypeScript
import { BindingExpression, bindingMode } from "aurelia-binding";
/**
* An object describing information analyzed from an attribute in an Aurelia templates
*/
export interface AttributeInfo {
command?: string;
expression?: string | BindingExpression;
attrName?: string;
attrValue?: string;
defaultBindingMode?: bindingMode;
}