From ca7ff385f925498e4c42babc24041d6801d4e81d Mon Sep 17 00:00:00 2001 From: Lorenz Padberg Date: Thu, 30 Jun 2022 15:19:53 +0200 Subject: [PATCH] added type for circle diagram --- client/src/types.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/client/src/types.ts b/client/src/types.ts index 265f9974..006b1d25 100644 --- a/client/src/types.ts +++ b/client/src/types.ts @@ -113,3 +113,14 @@ export interface Circle extends LearningWagtailPage { goals: CircleGoal[]; job_situations: CircleJobSituation[]; } + +export interface CircleDiagramData { + index: number + title: string + icon: string + startAngle: number + endAngle: number + arrowStartAngle: number + arrowEndAngle: number + done: boolean +}