import type { CreateGoalRequest, GoalStatus, SessionGoal } from "../../goals/index.js"; export interface GoalContext { create(request: CreateGoalRequest): Promise; get(): SessionGoal | undefined; update(status: Extract): Promise; }