// eslint-disable-next-line @typescript-eslint/no-explicit-any export type ActionMap = { [Key in keyof M]: M[Key] extends undefined ? { type: Key } : { type: Key payload: M[Key] } }