first commit
This commit is contained in:
18
dist/events/events.service.d.ts
vendored
Normal file
18
dist/events/events.service.d.ts
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import { CreateEventDto } from './dto/create-event.dto';
|
||||
import { PrismaService } from '../prisma/prisma.service';
|
||||
export declare class EventsService {
|
||||
private prisma;
|
||||
constructor(prisma: PrismaService);
|
||||
create(createEventDto: CreateEventDto): import(".prisma/client").Prisma.Prisma__EventClient<{
|
||||
id: string;
|
||||
name: string;
|
||||
date: string;
|
||||
location: string;
|
||||
}, never, import("@prisma/client/runtime/library").DefaultArgs, import(".prisma/client").Prisma.PrismaClientOptions>;
|
||||
findAll(): import(".prisma/client").Prisma.PrismaPromise<{
|
||||
id: string;
|
||||
name: string;
|
||||
date: string;
|
||||
location: string;
|
||||
}[]>;
|
||||
}
|
||||
Reference in New Issue
Block a user