UNPKG

504 BTypeScriptView Raw
1import { EffectConfig, EffectMetadata } from './models';
2/**
3 * @deprecated The Effect decorator (`@Effect`) is deprecated in favor for the `createEffect` method.
4 * See the docs for more info {@link https://ngrx.io/guide/migration/v11#the-effect-decorator}
5 */
6export declare function Effect(config?: EffectConfig): <T extends Object, K extends Exclude<keyof T, keyof Object>>(target: T, propertyName: K) => void;
7export declare function getEffectDecoratorMetadata<T>(instance: T): EffectMetadata<T>[];