1
1
mirror of https://github.com/theoludwig/p61-project.git synced 2024-07-17 07:00:12 +02:00
p61-project/domain/repositories/HabitProgressUpdate.ts

13 lines
319 B
TypeScript
Raw Normal View History

2024-04-11 12:32:09 +02:00
import type {
HabitProgress,
HabitProgressData,
} from "../entities/HabitProgress"
export interface HabitProgressUpdateOptions {
2024-04-11 23:03:45 +02:00
habitProgressData: Omit<HabitProgressData, "habitId">
2024-04-11 12:32:09 +02:00
}
export interface HabitProgressUpdateRepository {
execute: (options: HabitProgressUpdateOptions) => Promise<HabitProgress>
}