Files
evento/dist/guest/api/guest.controller.d.ts
2026-03-18 14:55:56 -03:00

11 lines
655 B
TypeScript

import { GuestService } from '../services/guest.service';
import { CreateGuestDto } from './dto/create-guest.dto';
import { UpdateRsvpDto } from './dto/update-rsvp.dto';
export declare class GuestController {
private readonly guestService;
constructor(guestService: GuestService);
createGuest(tenantId: string, dto: CreateGuestDto): Promise<import("../entities/guest.entity").Guest>;
listGuests(tenantId: string): Promise<import("../entities/guest.entity").Guest[]>;
updateRsvp(tenantId: string, id: string, dto: UpdateRsvpDto): Promise<import("../entities/guest.entity").Guest | null>;
}
//# sourceMappingURL=guest.controller.d.ts.map