Skip to content

Commit

Permalink
test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestjx committed Oct 25, 2024
1 parent c3a93b0 commit b5c6f4b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions types/questions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,17 @@ declare namespace Questions {
name: string;
status: string;
skills: Skill[];
edited: boolean = false; //false by default (only used by UI)
// edited: boolean = false; //false by default (only used by UI)
edited: boolean; //false by default (only used by UI)
}

interface Skill {
id?: number;
name: string;
status: string;
topicId: number;
edited: boolean = false; //false by default (only used by UI)
// edited: boolean = false; //false by default (only used by UI)
edited: boolean; //false by default (only used by UI)
}

interface RetrieveQuestionRequest {
Expand Down

0 comments on commit b5c6f4b

Please sign in to comment.