mframejs
Version:
simple framework
10 lines (9 loc) • 420 B
TypeScript
import { IBindingContext } from '../interface/exported';
export declare class BindingContext {
$context: any;
$overrideContext: IBindingContext;
$event: any;
__bindingContext: boolean;
constructor($context: any, $overrideContext: IBindingContext, $event: any);
}
export declare function createBindingContext(context: Object, overrideContext?: IBindingContext, event?: any): IBindingContext;