| 16 | export type RngProfile = 'insecure' | 'secure' | 'hybrid' | (string & {}) |
| 17 | |
| 18 | export interface CustomStrategyContext { |
| 19 | length: CodeLength |
| 20 | pickDigit(): string |
| 21 | pickTwoDifferentDigits(): [string, string] |
| 22 | pickThreeDifferentDigits(): [string, string, string] |
| 23 | fromDigits(digits: string[]): string |
| 24 | isTooSimple(code: string): boolean |
| 25 | isAllSame(code: string): boolean |
| 26 | } |
| 27 | |
| 28 | export interface CodeAnalysis { |
| 29 | length: CodeLength |
no outgoing calls
no test coverage detected