| 26 | } |
| 27 | |
| 28 | export interface CodeAnalysis { |
| 29 | length: CodeLength |
| 30 | isAllSame: boolean |
| 31 | isTooSimple: boolean |
| 32 | isSequentialAsc: boolean |
| 33 | isSequentialDesc: boolean |
| 34 | repeatedGroups: number |
| 35 | |
| 36 | entropy: number |
| 37 | collisionRisk: 'low' | 'medium' | 'high' |
| 38 | memorability: 'low' | 'medium' | 'high' |
| 39 | } |
| 40 | |
| 41 | export interface CodePrediction { |
| 42 | memorabilityScore: number |
nothing calls this directly
no outgoing calls
no test coverage detected