mirror of
https://github.com/theoludwig/p61-project.git
synced 2024-07-17 07:00:12 +02:00
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
import type { Habit, HabitEditData } from "../entities/Habit"
|
|
|
|
export interface HabitEditOptions {
|
|
habitEditData: HabitEditData
|
|
}
|
|
|
|
export interface HabitEditRepository {
|
|
execute: (options: HabitEditOptions) => Promise<Habit>
|
|
}
|