Type alias Action

Action: Immutable<{
    body: {
        groupId: string;
    };
    type: "DELETE";
} | {
    body: GroupDto[];
    type: "INIT";
} | {
    body: GroupDto;
    type: "UPDATE";
}>

Generated using TypeDoc