@noeldemartin/faker
Version:
Generate massive amounts of fake contextual data
16 lines (15 loc) • 483 B
TypeScript
import type { LocaleEntry } from './definitions';
/**
* The possible definitions related to phone numbers.
*/
export declare type PhoneNumberDefinitions = LocaleEntry<{
/**
* Some patterns used to generate phone numbers.
* `#` will be replaced by a random digit (0-9).
* `!` will be replaced by a random digit (2-9).
* (e.g. `!##-!##-####` -> 272-285-0453)
*
* @see faker.helpers.replaceSymbolWithNumber(format)
*/
formats: string[];
}>;