UNPKG

517 BTypeScriptView Raw
1import { ViewContainerRef, TemplateRef } from '@angular/core';
2import { IReactionOptions } from 'mobx';
3import { MobxAutorunDirective } from './mobx-autorun.directive';
4export declare class MobxReactionDirective extends MobxAutorunDirective {
5 protected templateRef: TemplateRef<any>;
6 protected viewContainer: ViewContainerRef;
7 mobxReaction: any;
8 mobxReactionOptions: IReactionOptions;
9 constructor(templateRef: TemplateRef<any>, viewContainer: ViewContainerRef);
10 autoDetect(view: any): void;
11}