11 lines
300 B
TypeScript
11 lines
300 B
TypeScript
|
import type { Habit } from "../entities/Habit"
|
||
|
import type { HabitProgress } from "../entities/HabitProgress"
|
||
|
|
||
|
export interface GetHabitProgressesOptions {
|
||
|
habit: Habit
|
||
|
}
|
||
|
|
||
|
export interface GetHabitProgressesRepository {
|
||
|
execute: (options: GetHabitProgressesOptions) => Promise<HabitProgress[]>
|
||
|
}
|