Initial commit - Event Planner application
This commit is contained in:
13
dist/todo/services/todo.service.d.ts
vendored
Normal file
13
dist/todo/services/todo.service.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import { MikroORM } from '@mikro-orm/core';
|
||||
import { EventEmitter2 } from '@nestjs/event-emitter';
|
||||
import { TodoItem } from '../entities/todo.entity';
|
||||
export declare class TodoService {
|
||||
private readonly orm;
|
||||
private readonly eventEmitter;
|
||||
constructor(orm: MikroORM, eventEmitter: EventEmitter2);
|
||||
private get em();
|
||||
createTodo(tenantId: string, dto: Partial<TodoItem>): Promise<TodoItem>;
|
||||
listTodos(tenantId: string): Promise<TodoItem[]>;
|
||||
markComplete(tenantId: string, id: string): Promise<TodoItem | null>;
|
||||
}
|
||||
//# sourceMappingURL=todo.service.d.ts.map
|
||||
Reference in New Issue
Block a user