| 44 | } |
| 45 | |
| 46 | export interface GenerateOptions { |
| 47 | length?: CodeLength |
| 48 | strategy?: Strategy |
| 49 | avoidSimpleSequences?: boolean |
| 50 | avoidSameDigits?: boolean |
| 51 | blackList?: string[] |
| 52 | previousCode?: string |
| 53 | allowedDigits?: string[] |
| 54 | |
| 55 | rng?: () => number |
| 56 | rngProfile?: RngProfile |
| 57 | |
| 58 | profile?: HumanProfile |
| 59 | mode?: SecurityMode |
| 60 | |
| 61 | avoidSimilarPrevious?: boolean |
| 62 | |
| 63 | customStrategy?: (ctx: CustomStrategyContext) => string |
| 64 | } |
nothing calls this directly
no outgoing calls
no test coverage detected