7 lines
251 B
TypeScript
7 lines
251 B
TypeScript
import { Type } from '@angular/core';
|
|
|
|
import { Effects as AppEffects } from './app/effects';
|
|
import { Effects as AppAuthenticationEffects } from './authentication/effects';
|
|
|
|
export const effects: Type<any>[] = [AppEffects, AppAuthenticationEffects];
|