UNPKG

adminjs

Version:
14 lines (10 loc) 356 B
import type { SessionInState } from '../reducers/sessionReducer.js' export const SESSION_INITIALIZE = 'SESSION_INITIALIZE' export type SetCurrentAdminResponse = { type: typeof SESSION_INITIALIZE data: SessionInState } export const setCurrentAdmin = (data: SessionInState = null): SetCurrentAdminResponse => ({ type: SESSION_INITIALIZE, data, })