Skip to content

Commit

Permalink
fix(Store): Removed readonly from type (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts authored and MikeRyanDev committed Jul 12, 2017
1 parent 3982038 commit 68274c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/store/src/store.ts
Expand Up @@ -13,7 +13,7 @@ import { isSelector, createSelector } from './selector';


@Injectable()
export class Store<T> extends Observable<Readonly<T>> implements Observer<Action> {
export class Store<T> extends Observable<T> implements Observer<Action> {
constructor(
state$: StateObservable,
private actionsObserver: ActionsSubject,
Expand Down

0 comments on commit 68274c9

Please sign in to comment.