1
私はこのようなものがあります:活字体識別型連合型
export const MapDispatchToProps = {
currentDateChanged,
attendanceReceived,
updateRecord,
updateRecords,
};
export type ActionsType = typeof currentDateChanged | typeof attendanceReceived | typeof updateRecord | typeof updateRecords;
をMapDispatchToPropsの性質を繰り返すことなく、判別共用体型のActionsTypeを定義する方法はありますか?