| 10 | * The core grants access to the locale data, the randomizer and config settings. |
| 11 | */ |
| 12 | export interface FakerCore { |
| 13 | /** |
| 14 | * The locale data associated with this instance. |
| 15 | * |
| 16 | * Always present, but it might be empty if the locale data is not available. |
| 17 | */ |
| 18 | readonly locale: LocaleProxy; |
| 19 | |
| 20 | /** |
| 21 | * The randomizer used to generate random values. |
| 22 | */ |
| 23 | readonly randomizer: Randomizer; |
| 24 | |
| 25 | /** |
| 26 | * The configuration settings used by this instance. |
| 27 | */ |
| 28 | readonly config: FakerConfig; |
| 29 | } |
| 30 | |
| 31 | export interface FakerOptions { |
| 32 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected