From 185748d31ffaeb635ac54e20c557a7b7faa16e88 Mon Sep 17 00:00:00 2001 From: Tifenn Guillas <tifenn.guillas@gmail.com> Date: Wed, 15 Sep 2021 10:47:00 +0200 Subject: [PATCH] Tests on samp reducer => DONE --- client/src/app/instance/store/reducers/samp.reducer.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/src/app/instance/store/reducers/samp.reducer.ts b/client/src/app/instance/store/reducers/samp.reducer.ts index 75d47757..f16136d2 100644 --- a/client/src/app/instance/store/reducers/samp.reducer.ts +++ b/client/src/app/instance/store/reducers/samp.reducer.ts @@ -11,6 +11,11 @@ import { createReducer, on } from '@ngrx/store'; import * as sampActions from '../actions/samp.actions'; +/** + * Interface for samp state. + * + * @interface State + */ export interface State { registered: boolean; } -- GitLab