Type alias GroupEventDto

GroupEventDto: Immutable<{
    body: {
        groupId: string;
    };
    method: "DELETE";
    path: "/usersGroup";
} | {
    body: GroupDto;
    method: "POST" | "PUT";
    path: "/usersGroup";
}>

Generated using TypeDoc