11 lines
655 B
TypeScript
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
|