export interface State { signined: boolean; pending: boolean; } export const initialState: State = { signined: false, pending: false, };