| 71 | } |
| 72 | |
| 73 | export interface IProblem { |
| 74 | isFavorite: boolean; |
| 75 | locked: boolean; |
| 76 | state: ProblemState; |
| 77 | id: string; |
| 78 | name: string; |
| 79 | difficulty: string; |
| 80 | passRate: string; |
| 81 | companies: string[]; |
| 82 | tags: string[]; |
| 83 | } |
| 84 | |
| 85 | export const defaultProblem: IProblem = { |
| 86 | isFavorite: false, |
nothing calls this directly
no outgoing calls
no test coverage detected