@@ -14,7 +14,7 @@ export type ActionType =
export type Action = {
type: ActionType;
- username?: string;
- userToken?: string;
- error?: string;
+ username?: string | null;
+ userToken?: string | null;
+ error?: string | null;
};