angular2
Version:
Angular 2 - a web framework for modern web apps
10 lines (9 loc) • 351 B
TypeScript
import { DirectiveIndex } from './directive_record';
import { ProtoRecord } from './proto_record';
export declare class EventBinding {
eventName: string;
elIndex: number;
dirIndex: DirectiveIndex;
records: ProtoRecord[];
constructor(eventName: string, elIndex: number, dirIndex: DirectiveIndex, records: ProtoRecord[]);
}