const.d.ts 1.0 KB

12345678910111213141516171819202122232425262728
  1. export declare const DATE_MAX_YEAR = 2050;
  2. export declare const DATE_MIN_YEAR = 1000;
  3. export declare const DATE_SPLITS: {
  4. 4: number[][];
  5. 5: number[][];
  6. 6: number[][];
  7. 7: number[][];
  8. 8: number[][];
  9. };
  10. export declare const BRUTEFORCE_CARDINALITY = 10;
  11. export declare const MIN_GUESSES_BEFORE_GROWING_SEQUENCE = 10000;
  12. export declare const MIN_SUBMATCH_GUESSES_SINGLE_CHAR = 10;
  13. export declare const MIN_SUBMATCH_GUESSES_MULTI_CHAR = 50;
  14. export declare const MIN_YEAR_SPACE = 20;
  15. export declare const START_UPPER: RegExp;
  16. export declare const END_UPPER: RegExp;
  17. export declare const ALL_UPPER: RegExp;
  18. export declare const ALL_UPPER_INVERTED: RegExp;
  19. export declare const ALL_LOWER: RegExp;
  20. export declare const ALL_LOWER_INVERTED: RegExp;
  21. export declare const ONE_LOWER: RegExp;
  22. export declare const ONE_UPPER: RegExp;
  23. export declare const ALPHA_INVERTED: RegExp;
  24. export declare const ALL_DIGIT: RegExp;
  25. export declare const REFERENCE_YEAR: number;
  26. export declare const REGEXEN: {
  27. recentYear: RegExp;
  28. };