v15
useActions
import {
useActions,
StoreChunk
} from '@ngrx-ducks/core';
@StoreChunk()
export class Chunk {
static actions = useActions(Chunk); // ❌ Will throw a runtime error, because Chunk is undefined at this point.
}mport {
useActions,
StoreChunk
} from '@ngrx-ducks/core';
@StoreChunk()
export class Chunk { }
export const chunkActions = useActions(Chunk); // ✅Last updated
Was this helpful?