Initial commit - Event Planner application
This commit is contained in:
11
dist/guest/api/guest.controller.d.ts
vendored
Normal file
11
dist/guest/api/guest.controller.d.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
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
|
||||
Reference in New Issue
Block a user