Last active
March 14, 2019 10:46
-
-
Save arturovt/b482b2d828f69cf50db82369be479c5d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface EffectNotification { | |
effect: Observable<any> | (() => Observable<any>); | |
propertyName: string; | |
sourceName: string; | |
sourceInstance: any; | |
notification: Notification<Action | null | undefined>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment