mframejs
Version:
simple framework
16 lines (15 loc) • 461 B
TypeScript
import { IAttribute, IBindingContext } from '../interface/exported';
export declare class DelgateEventsAttribute implements IAttribute {
$element: HTMLInputElement;
$attribute: Attr;
$bindingContext: IBindingContext;
private value;
private name;
private expressionValue;
eventHandlerBinded: any;
constructor();
created(): void;
attached(): void;
detached(): void;
eventHandler(event: any): void;
}