aurelia-templating-resources
Version:
A standard set of behaviors, converters and other resources for use with the Aurelia templating library.
18 lines (15 loc) • 418 B
text/typescript
/* eslint-disable @typescript-eslint/no-unused-vars */
import { BindingExpression } from 'aurelia-binding';
import { TargetInstruction } from 'aurelia-templating';
/**@internal */
declare module 'aurelia-templating' {
interface ViewFactory {
template: DocumentFragment;
}
}
/**@internal */
declare module 'aurelia-binding' {
interface BindingExpression {
targetProperty: string;
}
}