struct-fakerator 2.2.3 → 2.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +651 -1
- package/dist/index.d.ts +651 -1
- package/dist/index.js +1726 -5016
- package/dist/index.mjs +1711 -5010
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import * as _faker_js_faker__ from '@faker-js/faker/.';
|
|
2
|
+
|
|
1
3
|
type ValueConfig<T> = {
|
|
2
4
|
type: "value";
|
|
3
5
|
generateFn: () => T;
|
|
@@ -84,4 +86,652 @@ declare const createTupleGenerator: <T extends TupleConfig<unknown, unknown, unk
|
|
|
84
86
|
declare const createBoundedSeriesGenerator: <T extends BoundedSeriesConfig>(config: T) => (() => Result<T>);
|
|
85
87
|
declare const createGeneratorByType: <T extends AllConfig<unknown>>(config: T, customTypeMatch?: (config: unknown, path: string) => ValueConfig<unknown>) => (() => Result<T>);
|
|
86
88
|
|
|
87
|
-
|
|
89
|
+
/** Airline [aircraftType](https://fakerjs.dev/api/airline.html#aircraftType) */
|
|
90
|
+
declare const aircraftType: () => ValueConfig<"narrowbody" | "regional" | "widebody">;
|
|
91
|
+
/** Airline [flightNumber](https://fakerjs.dev/api/airline.html#flightNumber) */
|
|
92
|
+
declare const flightNumber: (options?: {
|
|
93
|
+
length?: number | {
|
|
94
|
+
min: number;
|
|
95
|
+
max: number;
|
|
96
|
+
};
|
|
97
|
+
addLeadingZeros?: boolean;
|
|
98
|
+
}) => ValueConfig<string>;
|
|
99
|
+
/** Airline [seat](https://fakerjs.dev/api/airline.html#seat) */
|
|
100
|
+
declare const seat: (options?: {
|
|
101
|
+
aircraftType?: _faker_js_faker__.AircraftType;
|
|
102
|
+
}) => ValueConfig<string>;
|
|
103
|
+
|
|
104
|
+
declare const airline_aircraftType: typeof aircraftType;
|
|
105
|
+
declare const airline_flightNumber: typeof flightNumber;
|
|
106
|
+
declare const airline_seat: typeof seat;
|
|
107
|
+
declare namespace airline {
|
|
108
|
+
export { airline_aircraftType as aircraftType, airline_flightNumber as flightNumber, airline_seat as seat };
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/** Animal [bear](https://fakerjs.dev/api/animal.html#bear) */
|
|
112
|
+
declare const bear: () => ValueConfig<string>;
|
|
113
|
+
/** Animal [bird](https://fakerjs.dev/api/animal.html#bird) */
|
|
114
|
+
declare const bird: () => ValueConfig<string>;
|
|
115
|
+
/** Animal [cat](https://fakerjs.dev/api/animal.html#cat) */
|
|
116
|
+
declare const cat: () => ValueConfig<string>;
|
|
117
|
+
/** Animal [cetacean](https://fakerjs.dev/api/animal.html#cetacean) */
|
|
118
|
+
declare const cetacean: () => ValueConfig<string>;
|
|
119
|
+
/** Animal [cow](https://fakerjs.dev/api/animal.html#cow) */
|
|
120
|
+
declare const cow: () => ValueConfig<string>;
|
|
121
|
+
/** Animal [crocodilia](https://fakerjs.dev/api/animal.html#crocodilia) */
|
|
122
|
+
declare const crocodilia: () => ValueConfig<string>;
|
|
123
|
+
/** Animal [dog](https://fakerjs.dev/api/animal.html#dog) */
|
|
124
|
+
declare const dog: () => ValueConfig<string>;
|
|
125
|
+
/** Animal [fish](https://fakerjs.dev/api/animal.html#fish) */
|
|
126
|
+
declare const fish: () => ValueConfig<string>;
|
|
127
|
+
/** Animal [horse](https://fakerjs.dev/api/animal.html#horse) */
|
|
128
|
+
declare const horse: () => ValueConfig<string>;
|
|
129
|
+
/** Animal [insect](https://fakerjs.dev/api/animal.html#insect) */
|
|
130
|
+
declare const insect: () => ValueConfig<string>;
|
|
131
|
+
/** Animal [lion](https://fakerjs.dev/api/animal.html#lion) */
|
|
132
|
+
declare const lion: () => ValueConfig<string>;
|
|
133
|
+
/** Animal [rabbit](https://fakerjs.dev/api/animal.html#rabbit) */
|
|
134
|
+
declare const rabbit: () => ValueConfig<string>;
|
|
135
|
+
/** Animal [rodent](https://fakerjs.dev/api/animal.html#rodent) */
|
|
136
|
+
declare const rodent: () => ValueConfig<string>;
|
|
137
|
+
/** Animal [snake](https://fakerjs.dev/api/animal.html#snake) */
|
|
138
|
+
declare const snake: () => ValueConfig<string>;
|
|
139
|
+
/** Animal [type](https://fakerjs.dev/api/animal.html#type) */
|
|
140
|
+
declare const type$1: () => ValueConfig<string>;
|
|
141
|
+
|
|
142
|
+
declare const animal_bear: typeof bear;
|
|
143
|
+
declare const animal_bird: typeof bird;
|
|
144
|
+
declare const animal_cat: typeof cat;
|
|
145
|
+
declare const animal_cetacean: typeof cetacean;
|
|
146
|
+
declare const animal_cow: typeof cow;
|
|
147
|
+
declare const animal_crocodilia: typeof crocodilia;
|
|
148
|
+
declare const animal_dog: typeof dog;
|
|
149
|
+
declare const animal_fish: typeof fish;
|
|
150
|
+
declare const animal_horse: typeof horse;
|
|
151
|
+
declare const animal_insect: typeof insect;
|
|
152
|
+
declare const animal_lion: typeof lion;
|
|
153
|
+
declare const animal_rabbit: typeof rabbit;
|
|
154
|
+
declare const animal_rodent: typeof rodent;
|
|
155
|
+
declare const animal_snake: typeof snake;
|
|
156
|
+
declare namespace animal {
|
|
157
|
+
export { animal_bear as bear, animal_bird as bird, animal_cat as cat, animal_cetacean as cetacean, animal_cow as cow, animal_crocodilia as crocodilia, animal_dog as dog, animal_fish as fish, animal_horse as horse, animal_insect as insect, animal_lion as lion, animal_rabbit as rabbit, animal_rodent as rodent, animal_snake as snake, type$1 as type };
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
/** Color [cmyk](https://fakerjs.dev/api/color.html#cmyk) */
|
|
161
|
+
declare const cmyk: (options?: {
|
|
162
|
+
format?: _faker_js_faker__.ColorFormat;
|
|
163
|
+
}) => ValueConfig<string | number[]>;
|
|
164
|
+
/** Color [colorByCSSColorSpace](https://fakerjs.dev/api/color.html#colorByCSSColorSpace) */
|
|
165
|
+
declare const colorByCSSColorSpace: (options?: {
|
|
166
|
+
format?: _faker_js_faker__.ColorFormat;
|
|
167
|
+
space?: _faker_js_faker__.CssSpaceType;
|
|
168
|
+
}) => ValueConfig<string | number[]>;
|
|
169
|
+
/** Color [cssSupportedFunction](https://fakerjs.dev/api/color.html#cssSupportedFunction) */
|
|
170
|
+
declare const cssSupportedFunction: () => ValueConfig<"rgb" | "rgba" | "hsl" | "hsla" | "hwb" | "cmyk" | "lab" | "lch" | "color">;
|
|
171
|
+
/** Color [cssSupportedSpace](https://fakerjs.dev/api/color.html#cssSupportedSpace) */
|
|
172
|
+
declare const cssSupportedSpace: () => ValueConfig<"sRGB" | "display-p3" | "rec2020" | "a98-rgb" | "prophoto-rgb">;
|
|
173
|
+
/** Color [hsl](https://fakerjs.dev/api/color.html#hsl) */
|
|
174
|
+
declare const hsl: (options?: {
|
|
175
|
+
format?: _faker_js_faker__.ColorFormat;
|
|
176
|
+
includeAlpha?: boolean;
|
|
177
|
+
}) => ValueConfig<string | number[]>;
|
|
178
|
+
/** Color [human](https://fakerjs.dev/api/color.html#human) */
|
|
179
|
+
declare const human: () => ValueConfig<string>;
|
|
180
|
+
/** Color [hwb](https://fakerjs.dev/api/color.html#hwb) */
|
|
181
|
+
declare const hwb: (options?: {
|
|
182
|
+
format?: _faker_js_faker__.ColorFormat;
|
|
183
|
+
}) => ValueConfig<string | number[]>;
|
|
184
|
+
/** Color [lab](https://fakerjs.dev/api/color.html#lab) */
|
|
185
|
+
declare const lab: (options?: {
|
|
186
|
+
format?: _faker_js_faker__.ColorFormat;
|
|
187
|
+
}) => ValueConfig<string | number[]>;
|
|
188
|
+
/** Color [lch](https://fakerjs.dev/api/color.html#lch) */
|
|
189
|
+
declare const lch: (options?: {
|
|
190
|
+
format?: _faker_js_faker__.ColorFormat;
|
|
191
|
+
}) => ValueConfig<string | number[]>;
|
|
192
|
+
/** Color [rgb](https://fakerjs.dev/api/color.html#rgb) */
|
|
193
|
+
declare const rgb: (options?: {
|
|
194
|
+
prefix?: string;
|
|
195
|
+
casing?: _faker_js_faker__.Casing;
|
|
196
|
+
format?: "hex" | _faker_js_faker__.ColorFormat;
|
|
197
|
+
includeAlpha?: boolean;
|
|
198
|
+
}) => ValueConfig<string | number[]>;
|
|
199
|
+
/** Color [space](https://fakerjs.dev/api/color.html#space) */
|
|
200
|
+
declare const space: () => ValueConfig<string>;
|
|
201
|
+
|
|
202
|
+
declare const color_cmyk: typeof cmyk;
|
|
203
|
+
declare const color_colorByCSSColorSpace: typeof colorByCSSColorSpace;
|
|
204
|
+
declare const color_cssSupportedFunction: typeof cssSupportedFunction;
|
|
205
|
+
declare const color_cssSupportedSpace: typeof cssSupportedSpace;
|
|
206
|
+
declare const color_hsl: typeof hsl;
|
|
207
|
+
declare const color_human: typeof human;
|
|
208
|
+
declare const color_hwb: typeof hwb;
|
|
209
|
+
declare const color_lab: typeof lab;
|
|
210
|
+
declare const color_lch: typeof lch;
|
|
211
|
+
declare const color_rgb: typeof rgb;
|
|
212
|
+
declare const color_space: typeof space;
|
|
213
|
+
declare namespace color {
|
|
214
|
+
export { color_cmyk as cmyk, color_colorByCSSColorSpace as colorByCSSColorSpace, color_cssSupportedFunction as cssSupportedFunction, color_cssSupportedSpace as cssSupportedSpace, color_hsl as hsl, color_human as human, color_hwb as hwb, color_lab as lab, color_lch as lch, color_rgb as rgb, color_space as space };
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
/** Commerce [department](https://fakerjs.dev/api/commerce.html#department) */
|
|
218
|
+
declare const department: () => ValueConfig<string>;
|
|
219
|
+
/** Commerce [isbn](https://fakerjs.dev/api/commerce.html#isbn) */
|
|
220
|
+
declare const isbn: (options?: 10 | 13 | {
|
|
221
|
+
variant?: 10 | 13;
|
|
222
|
+
separator?: string;
|
|
223
|
+
}) => ValueConfig<string>;
|
|
224
|
+
/** Commerce [price](https://fakerjs.dev/api/commerce.html#price) */
|
|
225
|
+
declare const price: (options?: {
|
|
226
|
+
min?: number;
|
|
227
|
+
max?: number;
|
|
228
|
+
dec?: number;
|
|
229
|
+
symbol?: string;
|
|
230
|
+
}) => ValueConfig<string>;
|
|
231
|
+
/** Commerce [product](https://fakerjs.dev/api/commerce.html#product) */
|
|
232
|
+
declare const product: () => ValueConfig<string>;
|
|
233
|
+
/** Commerce [productAdjective](https://fakerjs.dev/api/commerce.html#productAdjective) */
|
|
234
|
+
declare const productAdjective: () => ValueConfig<string>;
|
|
235
|
+
/** Commerce [productDescription](https://fakerjs.dev/api/commerce.html#productDescription) */
|
|
236
|
+
declare const productDescription: () => ValueConfig<string>;
|
|
237
|
+
/** Commerce [productMaterial](https://fakerjs.dev/api/commerce.html#productMaterial) */
|
|
238
|
+
declare const productMaterial: () => ValueConfig<string>;
|
|
239
|
+
/** Commerce [productName](https://fakerjs.dev/api/commerce.html#productName) */
|
|
240
|
+
declare const productName: () => ValueConfig<string>;
|
|
241
|
+
|
|
242
|
+
declare const commerce_department: typeof department;
|
|
243
|
+
declare const commerce_isbn: typeof isbn;
|
|
244
|
+
declare const commerce_price: typeof price;
|
|
245
|
+
declare const commerce_product: typeof product;
|
|
246
|
+
declare const commerce_productAdjective: typeof productAdjective;
|
|
247
|
+
declare const commerce_productDescription: typeof productDescription;
|
|
248
|
+
declare const commerce_productMaterial: typeof productMaterial;
|
|
249
|
+
declare const commerce_productName: typeof productName;
|
|
250
|
+
declare namespace commerce {
|
|
251
|
+
export { commerce_department as department, commerce_isbn as isbn, commerce_price as price, commerce_product as product, commerce_productAdjective as productAdjective, commerce_productDescription as productDescription, commerce_productMaterial as productMaterial, commerce_productName as productName };
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/** Common constant */
|
|
255
|
+
declare const constant: <T>(value: T) => ValueConfig<T>;
|
|
256
|
+
|
|
257
|
+
declare const common_constant: typeof constant;
|
|
258
|
+
declare namespace common {
|
|
259
|
+
export { common_constant as constant };
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/** Company [buzzAdjective](https://fakerjs.dev/api/company.html#buzzAdjective) */
|
|
263
|
+
declare const buzzAdjective: () => ValueConfig<string>;
|
|
264
|
+
/** Company [buzzNoun](https://fakerjs.dev/api/company.html#buzzNoun) */
|
|
265
|
+
declare const buzzNoun: () => ValueConfig<string>;
|
|
266
|
+
/** Company [buzzPhrase](https://fakerjs.dev/api/company.html#buzzPhrase) */
|
|
267
|
+
declare const buzzPhrase: () => ValueConfig<string>;
|
|
268
|
+
/** Company [buzzVerb](https://fakerjs.dev/api/company.html#buzzVerb) */
|
|
269
|
+
declare const buzzVerb: () => ValueConfig<string>;
|
|
270
|
+
/** Company [catchPhrase](https://fakerjs.dev/api/company.html#catchPhrase) */
|
|
271
|
+
declare const catchPhrase: () => ValueConfig<string>;
|
|
272
|
+
/** Company [catchPhraseAdjective](https://fakerjs.dev/api/company.html#catchPhraseAdjective) */
|
|
273
|
+
declare const catchPhraseAdjective: () => ValueConfig<string>;
|
|
274
|
+
/** Company [catchPhraseDescriptor](https://fakerjs.dev/api/company.html#catchPhraseDescriptor) */
|
|
275
|
+
declare const catchPhraseDescriptor: () => ValueConfig<string>;
|
|
276
|
+
/** Company [catchPhraseNoun](https://fakerjs.dev/api/company.html#catchPhraseNoun) */
|
|
277
|
+
declare const catchPhraseNoun: () => ValueConfig<string>;
|
|
278
|
+
/** Company [name](https://fakerjs.dev/api/company.html#name) */
|
|
279
|
+
declare const name: () => ValueConfig<string>;
|
|
280
|
+
|
|
281
|
+
declare const company_buzzAdjective: typeof buzzAdjective;
|
|
282
|
+
declare const company_buzzNoun: typeof buzzNoun;
|
|
283
|
+
declare const company_buzzPhrase: typeof buzzPhrase;
|
|
284
|
+
declare const company_buzzVerb: typeof buzzVerb;
|
|
285
|
+
declare const company_catchPhrase: typeof catchPhrase;
|
|
286
|
+
declare const company_catchPhraseAdjective: typeof catchPhraseAdjective;
|
|
287
|
+
declare const company_catchPhraseDescriptor: typeof catchPhraseDescriptor;
|
|
288
|
+
declare const company_catchPhraseNoun: typeof catchPhraseNoun;
|
|
289
|
+
declare const company_name: typeof name;
|
|
290
|
+
declare namespace company {
|
|
291
|
+
export { company_buzzAdjective as buzzAdjective, company_buzzNoun as buzzNoun, company_buzzPhrase as buzzPhrase, company_buzzVerb as buzzVerb, company_catchPhrase as catchPhrase, company_catchPhraseAdjective as catchPhraseAdjective, company_catchPhraseDescriptor as catchPhraseDescriptor, company_catchPhraseNoun as catchPhraseNoun, company_name as name };
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
/** Database [collation](https://fakerjs.dev/api/database.html#collation) */
|
|
295
|
+
declare const collation: () => ValueConfig<string>;
|
|
296
|
+
/** Database [column](https://fakerjs.dev/api/database.html#column) */
|
|
297
|
+
declare const column: () => ValueConfig<string>;
|
|
298
|
+
/** Database [engine](https://fakerjs.dev/api/database.html#engine) */
|
|
299
|
+
declare const engine: () => ValueConfig<string>;
|
|
300
|
+
/** Database [mongodbObjectId](https://fakerjs.dev/api/database.html#mongodbObjectId) */
|
|
301
|
+
declare const mongodbObjectId: () => ValueConfig<string>;
|
|
302
|
+
/** Database [type](https://fakerjs.dev/api/database.html#type) */
|
|
303
|
+
declare const type: () => ValueConfig<string>;
|
|
304
|
+
|
|
305
|
+
declare const database_collation: typeof collation;
|
|
306
|
+
declare const database_column: typeof column;
|
|
307
|
+
declare const database_engine: typeof engine;
|
|
308
|
+
declare const database_mongodbObjectId: typeof mongodbObjectId;
|
|
309
|
+
declare const database_type: typeof type;
|
|
310
|
+
declare namespace database {
|
|
311
|
+
export { database_collation as collation, database_column as column, database_engine as engine, database_mongodbObjectId as mongodbObjectId, database_type as type };
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
/** Datatype [boolean](https://fakerjs.dev/api/datatype.html#boolean) */
|
|
315
|
+
declare const boolean: (options?: number | {
|
|
316
|
+
probability?: number;
|
|
317
|
+
}) => ValueConfig<boolean>;
|
|
318
|
+
|
|
319
|
+
declare const datatype_boolean: typeof boolean;
|
|
320
|
+
declare namespace datatype {
|
|
321
|
+
export { datatype_boolean as boolean };
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
/** Datetime [anytime](https://fakerjs.dev/api/date.html#anytime) */
|
|
325
|
+
declare const anytime: (options?: {
|
|
326
|
+
refDate?: string | Date | number;
|
|
327
|
+
}) => ValueConfig<Date>;
|
|
328
|
+
/** Datetime [between](https://fakerjs.dev/api/date.html#between) */
|
|
329
|
+
declare const between: (options: {
|
|
330
|
+
from: string | Date | number;
|
|
331
|
+
to: string | Date | number;
|
|
332
|
+
}) => ValueConfig<Date>;
|
|
333
|
+
/** Datetime [betweens](https://fakerjs.dev/api/date.html#betweens) */
|
|
334
|
+
declare const betweens: (options: {
|
|
335
|
+
from: string | Date | number;
|
|
336
|
+
to: string | Date | number;
|
|
337
|
+
count?: number | {
|
|
338
|
+
min: number;
|
|
339
|
+
max: number;
|
|
340
|
+
};
|
|
341
|
+
}) => ValueConfig<Date[]>;
|
|
342
|
+
/** Datetime [birthdate](https://fakerjs.dev/api/date.html#birthdate) */
|
|
343
|
+
declare const birthdate: (options?: {
|
|
344
|
+
refDate?: string | Date | number;
|
|
345
|
+
} | {
|
|
346
|
+
mode: "age" | "year";
|
|
347
|
+
min: number;
|
|
348
|
+
max: number;
|
|
349
|
+
refDate?: string | Date | number;
|
|
350
|
+
}) => ValueConfig<Date>;
|
|
351
|
+
/** Datetime [future](https://fakerjs.dev/api/date.html#future) */
|
|
352
|
+
declare const future: (options?: {
|
|
353
|
+
years?: number;
|
|
354
|
+
refDate?: string | Date | number;
|
|
355
|
+
}) => ValueConfig<Date>;
|
|
356
|
+
/** Datetime [month](https://fakerjs.dev/api/date.html#month) */
|
|
357
|
+
declare const month: (options?: {
|
|
358
|
+
abbreviated?: boolean;
|
|
359
|
+
context?: boolean;
|
|
360
|
+
}) => ValueConfig<string>;
|
|
361
|
+
/** Datetime [past](https://fakerjs.dev/api/date.html#past) */
|
|
362
|
+
declare const past: (options?: {
|
|
363
|
+
years?: number;
|
|
364
|
+
refDate?: string | Date | number;
|
|
365
|
+
}) => ValueConfig<Date>;
|
|
366
|
+
/** Datetime [recent](https://fakerjs.dev/api/date.html#recent) */
|
|
367
|
+
declare const recent: (options?: {
|
|
368
|
+
days?: number;
|
|
369
|
+
refDate?: string | Date | number;
|
|
370
|
+
}) => ValueConfig<Date>;
|
|
371
|
+
/** Datetime [soon](https://fakerjs.dev/api/date.html#soon) */
|
|
372
|
+
declare const soon: (options?: {
|
|
373
|
+
days?: number;
|
|
374
|
+
refDate?: string | Date | number;
|
|
375
|
+
}) => ValueConfig<Date>;
|
|
376
|
+
/** Datetime [timeZone](https://fakerjs.dev/api/date.html#timeZone) */
|
|
377
|
+
declare const timeZone: () => ValueConfig<string>;
|
|
378
|
+
/** Datetime [weekday](https://fakerjs.dev/api/date.html#weekday) */
|
|
379
|
+
declare const weekday: (options?: {
|
|
380
|
+
abbreviated?: boolean;
|
|
381
|
+
context?: boolean;
|
|
382
|
+
}) => ValueConfig<string>;
|
|
383
|
+
|
|
384
|
+
declare const datetime_anytime: typeof anytime;
|
|
385
|
+
declare const datetime_between: typeof between;
|
|
386
|
+
declare const datetime_betweens: typeof betweens;
|
|
387
|
+
declare const datetime_birthdate: typeof birthdate;
|
|
388
|
+
declare const datetime_future: typeof future;
|
|
389
|
+
declare const datetime_month: typeof month;
|
|
390
|
+
declare const datetime_past: typeof past;
|
|
391
|
+
declare const datetime_recent: typeof recent;
|
|
392
|
+
declare const datetime_soon: typeof soon;
|
|
393
|
+
declare const datetime_timeZone: typeof timeZone;
|
|
394
|
+
declare const datetime_weekday: typeof weekday;
|
|
395
|
+
declare namespace datetime {
|
|
396
|
+
export { datetime_anytime as anytime, datetime_between as between, datetime_betweens as betweens, datetime_birthdate as birthdate, datetime_future as future, datetime_month as month, datetime_past as past, datetime_recent as recent, datetime_soon as soon, datetime_timeZone as timeZone, datetime_weekday as weekday };
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
/** Finance [accountName](https://fakerjs.dev/api/finance.html#accountName) */
|
|
400
|
+
declare const accountName: () => ValueConfig<string>;
|
|
401
|
+
/** Finance [accountNumber](https://fakerjs.dev/api/finance.html#accountNumber) */
|
|
402
|
+
declare const accountNumber: (optionsOrLength?: number | {
|
|
403
|
+
length?: number;
|
|
404
|
+
}) => ValueConfig<string>;
|
|
405
|
+
/** Finance [amount](https://fakerjs.dev/api/finance.html#amount) */
|
|
406
|
+
declare const amount: (options?: {
|
|
407
|
+
min?: number;
|
|
408
|
+
max?: number;
|
|
409
|
+
dec?: number;
|
|
410
|
+
symbol?: string;
|
|
411
|
+
autoFormat?: boolean;
|
|
412
|
+
}) => ValueConfig<string>;
|
|
413
|
+
/** Finance [bic](https://fakerjs.dev/api/finance.html#bic) */
|
|
414
|
+
declare const bic: (options?: {
|
|
415
|
+
includeBranchCode?: boolean;
|
|
416
|
+
}) => ValueConfig<string>;
|
|
417
|
+
/** Finance [bitcoinAddress](https://fakerjs.dev/api/finance.html#bitcoinAddress) */
|
|
418
|
+
declare const bitcoinAddress: (options?: {
|
|
419
|
+
type?: _faker_js_faker__.BitcoinAddressFamilyType;
|
|
420
|
+
network?: _faker_js_faker__.BitcoinNetworkType;
|
|
421
|
+
}) => ValueConfig<string>;
|
|
422
|
+
/** Finance [creditCardCVV](https://fakerjs.dev/api/finance.html#creditCardCVV) */
|
|
423
|
+
declare const creditCardCVV: () => ValueConfig<string>;
|
|
424
|
+
/** Finance [creditCardIssuer](https://fakerjs.dev/api/finance.html#creditCardIssuer) */
|
|
425
|
+
declare const creditCardIssuer: () => ValueConfig<string>;
|
|
426
|
+
/** Finance [creditCardNumber](https://fakerjs.dev/api/finance.html#creditCardNumber) */
|
|
427
|
+
declare const creditCardNumber: (options?: string | {
|
|
428
|
+
issuer?: string;
|
|
429
|
+
}) => ValueConfig<string>;
|
|
430
|
+
/** Finance [currency](https://fakerjs.dev/api/finance.html#currency) */
|
|
431
|
+
declare const currency: () => ValueConfig<_faker_js_faker__.Currency>;
|
|
432
|
+
/** Finance [currencyCode](https://fakerjs.dev/api/finance.html#currencyCode) */
|
|
433
|
+
declare const currencyCode: () => ValueConfig<string>;
|
|
434
|
+
/** Finance [currencySymbol](https://fakerjs.dev/api/finance.html#currencySymbol) */
|
|
435
|
+
declare const currencySymbol: () => ValueConfig<string>;
|
|
436
|
+
/** Finance [ethereumAddress](https://fakerjs.dev/api/finance.html#ethereumAddress) */
|
|
437
|
+
declare const ethereumAddress: () => ValueConfig<string>;
|
|
438
|
+
/** Finance [iban](https://fakerjs.dev/api/finance.html#iban) */
|
|
439
|
+
declare const iban: (options?: {
|
|
440
|
+
formatted?: boolean;
|
|
441
|
+
countryCode?: string;
|
|
442
|
+
}) => ValueConfig<string>;
|
|
443
|
+
/** Finance [litecoinAddress](https://fakerjs.dev/api/finance.html#litecoinAddress) */
|
|
444
|
+
declare const litecoinAddress: () => ValueConfig<string>;
|
|
445
|
+
/** Finance [maskedNumber](https://fakerjs.dev/api/finance.html#maskedNumber) */
|
|
446
|
+
declare const maskedNumber: (optionsOrLength?: number | {
|
|
447
|
+
length?: number;
|
|
448
|
+
parens?: boolean;
|
|
449
|
+
ellipsis?: boolean;
|
|
450
|
+
}) => ValueConfig<string>;
|
|
451
|
+
/** Finance [pin](https://fakerjs.dev/api/finance.html#pin) */
|
|
452
|
+
declare const pin: (options?: number | {
|
|
453
|
+
length?: number;
|
|
454
|
+
}) => ValueConfig<string>;
|
|
455
|
+
/** Finance [routingNumber](https://fakerjs.dev/api/finance.html#routingNumber) */
|
|
456
|
+
declare const routingNumber: () => ValueConfig<string>;
|
|
457
|
+
/** Finance [transactionDescription](https://fakerjs.dev/api/finance.html#transactionDescription) */
|
|
458
|
+
declare const transactionDescription: () => ValueConfig<string>;
|
|
459
|
+
/** Finance [transactionType](https://fakerjs.dev/api/finance.html#transactionType) */
|
|
460
|
+
declare const transactionType: () => ValueConfig<string>;
|
|
461
|
+
|
|
462
|
+
declare const finance_accountName: typeof accountName;
|
|
463
|
+
declare const finance_accountNumber: typeof accountNumber;
|
|
464
|
+
declare const finance_amount: typeof amount;
|
|
465
|
+
declare const finance_bic: typeof bic;
|
|
466
|
+
declare const finance_bitcoinAddress: typeof bitcoinAddress;
|
|
467
|
+
declare const finance_creditCardCVV: typeof creditCardCVV;
|
|
468
|
+
declare const finance_creditCardIssuer: typeof creditCardIssuer;
|
|
469
|
+
declare const finance_creditCardNumber: typeof creditCardNumber;
|
|
470
|
+
declare const finance_currency: typeof currency;
|
|
471
|
+
declare const finance_currencyCode: typeof currencyCode;
|
|
472
|
+
declare const finance_currencySymbol: typeof currencySymbol;
|
|
473
|
+
declare const finance_ethereumAddress: typeof ethereumAddress;
|
|
474
|
+
declare const finance_iban: typeof iban;
|
|
475
|
+
declare const finance_litecoinAddress: typeof litecoinAddress;
|
|
476
|
+
declare const finance_maskedNumber: typeof maskedNumber;
|
|
477
|
+
declare const finance_pin: typeof pin;
|
|
478
|
+
declare const finance_routingNumber: typeof routingNumber;
|
|
479
|
+
declare const finance_transactionDescription: typeof transactionDescription;
|
|
480
|
+
declare const finance_transactionType: typeof transactionType;
|
|
481
|
+
declare namespace finance {
|
|
482
|
+
export { finance_accountName as accountName, finance_accountNumber as accountNumber, finance_amount as amount, finance_bic as bic, finance_bitcoinAddress as bitcoinAddress, finance_creditCardCVV as creditCardCVV, finance_creditCardIssuer as creditCardIssuer, finance_creditCardNumber as creditCardNumber, finance_currency as currency, finance_currencyCode as currencyCode, finance_currencySymbol as currencySymbol, finance_ethereumAddress as ethereumAddress, finance_iban as iban, finance_litecoinAddress as litecoinAddress, finance_maskedNumber as maskedNumber, finance_pin as pin, finance_routingNumber as routingNumber, finance_transactionDescription as transactionDescription, finance_transactionType as transactionType };
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
/** Lorem [lines](https://fakerjs.dev/api/lorem.html#lines) */
|
|
486
|
+
declare const lines: (lineCount?: number | {
|
|
487
|
+
min: number;
|
|
488
|
+
max: number;
|
|
489
|
+
}) => ValueConfig<string>;
|
|
490
|
+
/** Lorem [paragraph](https://fakerjs.dev/api/lorem.html#paragraph) */
|
|
491
|
+
declare const paragraph: (sentenceCount?: number | {
|
|
492
|
+
min: number;
|
|
493
|
+
max: number;
|
|
494
|
+
}) => ValueConfig<string>;
|
|
495
|
+
/** Lorem [paragraphs](https://fakerjs.dev/api/lorem.html#paragraphs) */
|
|
496
|
+
declare const paragraphs: (paragraphCount?: number | {
|
|
497
|
+
min: number;
|
|
498
|
+
max: number;
|
|
499
|
+
}, separator?: string) => ValueConfig<string>;
|
|
500
|
+
/** Lorem [sentence](https://fakerjs.dev/api/lorem.html#sentence) */
|
|
501
|
+
declare const sentence: (wordCount?: number | {
|
|
502
|
+
min: number;
|
|
503
|
+
max: number;
|
|
504
|
+
}) => ValueConfig<string>;
|
|
505
|
+
/** Lorem [sentences](https://fakerjs.dev/api/lorem.html#sentences) */
|
|
506
|
+
declare const sentences: (sentenceCount?: number | {
|
|
507
|
+
min: number;
|
|
508
|
+
max: number;
|
|
509
|
+
}, separator?: string) => ValueConfig<string>;
|
|
510
|
+
/** Lorem [slug](https://fakerjs.dev/api/lorem.html#slug) */
|
|
511
|
+
declare const slug: (wordCount?: number | {
|
|
512
|
+
min: number;
|
|
513
|
+
max: number;
|
|
514
|
+
}) => ValueConfig<string>;
|
|
515
|
+
/** Lorem [text](https://fakerjs.dev/api/lorem.html#text) */
|
|
516
|
+
declare const text: () => ValueConfig<string>;
|
|
517
|
+
/** Lorem [word](https://fakerjs.dev/api/lorem.html#word) */
|
|
518
|
+
declare const word: (options?: number | {
|
|
519
|
+
length?: number | {
|
|
520
|
+
min: number;
|
|
521
|
+
max: number;
|
|
522
|
+
};
|
|
523
|
+
strategy?: "fail" | "closest" | "shortest" | "longest" | "any-length";
|
|
524
|
+
}) => ValueConfig<string>;
|
|
525
|
+
/** Lorem [words](https://fakerjs.dev/api/lorem.html#words) */
|
|
526
|
+
declare const words: (wordCount?: number | {
|
|
527
|
+
min: number;
|
|
528
|
+
max: number;
|
|
529
|
+
}) => ValueConfig<string>;
|
|
530
|
+
|
|
531
|
+
declare const lorem_lines: typeof lines;
|
|
532
|
+
declare const lorem_paragraph: typeof paragraph;
|
|
533
|
+
declare const lorem_paragraphs: typeof paragraphs;
|
|
534
|
+
declare const lorem_sentence: typeof sentence;
|
|
535
|
+
declare const lorem_sentences: typeof sentences;
|
|
536
|
+
declare const lorem_slug: typeof slug;
|
|
537
|
+
declare const lorem_text: typeof text;
|
|
538
|
+
declare const lorem_word: typeof word;
|
|
539
|
+
declare const lorem_words: typeof words;
|
|
540
|
+
declare namespace lorem {
|
|
541
|
+
export { lorem_lines as lines, lorem_paragraph as paragraph, lorem_paragraphs as paragraphs, lorem_sentence as sentence, lorem_sentences as sentences, lorem_slug as slug, lorem_text as text, lorem_word as word, lorem_words as words };
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
/** Number [bigInt](https://fakerjs.dev/api/number.html#bigInt) */
|
|
545
|
+
declare const bigInt: (options?: string | number | bigint | boolean | {
|
|
546
|
+
min?: bigint | number | string | boolean;
|
|
547
|
+
max?: bigint | number | string | boolean;
|
|
548
|
+
}) => ValueConfig<bigint>;
|
|
549
|
+
/** Number [binary](https://fakerjs.dev/api/number.html#binary) */
|
|
550
|
+
declare const binary$1: (options?: number | {
|
|
551
|
+
min?: number;
|
|
552
|
+
max?: number;
|
|
553
|
+
}) => ValueConfig<string>;
|
|
554
|
+
/** Number [float](https://fakerjs.dev/api/number.html#float) */
|
|
555
|
+
declare const float: (options?: number | {
|
|
556
|
+
min?: number;
|
|
557
|
+
max?: number;
|
|
558
|
+
fractionDigits?: number;
|
|
559
|
+
multipleOf?: number;
|
|
560
|
+
}) => ValueConfig<number>;
|
|
561
|
+
/** Number [hex](https://fakerjs.dev/api/number.html#hex) */
|
|
562
|
+
declare const hex: (options?: number | {
|
|
563
|
+
min?: number;
|
|
564
|
+
max?: number;
|
|
565
|
+
}) => ValueConfig<string>;
|
|
566
|
+
/** Number [int](https://fakerjs.dev/api/number.html#int) */
|
|
567
|
+
declare const int: (options?: number | {
|
|
568
|
+
min?: number;
|
|
569
|
+
max?: number;
|
|
570
|
+
multipleOf?: number;
|
|
571
|
+
}) => ValueConfig<number>;
|
|
572
|
+
/** Number [octal](https://fakerjs.dev/api/number.html#octal) */
|
|
573
|
+
declare const octal$1: (options?: number | {
|
|
574
|
+
min?: number;
|
|
575
|
+
max?: number;
|
|
576
|
+
}) => ValueConfig<string>;
|
|
577
|
+
|
|
578
|
+
declare const number$1_bigInt: typeof bigInt;
|
|
579
|
+
declare const number$1_float: typeof float;
|
|
580
|
+
declare const number$1_hex: typeof hex;
|
|
581
|
+
declare const number$1_int: typeof int;
|
|
582
|
+
declare namespace number$1 {
|
|
583
|
+
export { number$1_bigInt as bigInt, binary$1 as binary, number$1_float as float, number$1_hex as hex, number$1_int as int, octal$1 as octal };
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
/** Person [bio](https://fakerjs.dev/api/person.html#bio) */
|
|
587
|
+
declare const bio: () => ValueConfig<string>;
|
|
588
|
+
/** Person [firstName](https://fakerjs.dev/api/person.html#firstName) */
|
|
589
|
+
declare const firstName: (sex?: "female" | "male") => ValueConfig<string>;
|
|
590
|
+
/** Person [fullName](https://fakerjs.dev/api/person.html#fullName) */
|
|
591
|
+
declare const fullName: (options?: {
|
|
592
|
+
firstName?: string;
|
|
593
|
+
lastName?: string;
|
|
594
|
+
sex?: _faker_js_faker__.SexType;
|
|
595
|
+
}) => ValueConfig<string>;
|
|
596
|
+
/** Person [gender](https://fakerjs.dev/api/person.html#gender) */
|
|
597
|
+
declare const gender: () => ValueConfig<string>;
|
|
598
|
+
/** Person [jobArea](https://fakerjs.dev/api/person.html#jobArea) */
|
|
599
|
+
declare const jobArea: () => ValueConfig<string>;
|
|
600
|
+
/** Person [jobDescriptor](https://fakerjs.dev/api/person.html#jobDescriptor) */
|
|
601
|
+
declare const jobDescriptor: () => ValueConfig<string>;
|
|
602
|
+
/** Person [jobTitle](https://fakerjs.dev/api/person.html#jobTitle) */
|
|
603
|
+
declare const jobTitle: () => ValueConfig<string>;
|
|
604
|
+
/** Person [jobType](https://fakerjs.dev/api/person.html#jobType) */
|
|
605
|
+
declare const jobType: () => ValueConfig<string>;
|
|
606
|
+
/** Person [lastName](https://fakerjs.dev/api/person.html#lastName) */
|
|
607
|
+
declare const lastName: (sex?: "female" | "male") => ValueConfig<string>;
|
|
608
|
+
/** Person [middleName](https://fakerjs.dev/api/person.html#middleName) */
|
|
609
|
+
declare const middleName: (sex?: "female" | "male") => ValueConfig<string>;
|
|
610
|
+
/** Person [prefix](https://fakerjs.dev/api/person.html#prefix) */
|
|
611
|
+
declare const prefix: (sex?: "female" | "male") => ValueConfig<string>;
|
|
612
|
+
/** Person [sex](https://fakerjs.dev/api/person.html#sex) */
|
|
613
|
+
declare const sex: () => ValueConfig<string>;
|
|
614
|
+
/** Person [sexType](https://fakerjs.dev/api/person.html#sexType) */
|
|
615
|
+
declare const sexType: () => ValueConfig<"female" | "male">;
|
|
616
|
+
/** Person [suffix](https://fakerjs.dev/api/person.html#suffix) */
|
|
617
|
+
declare const suffix: () => ValueConfig<string>;
|
|
618
|
+
/** Person [zodiacSign](https://fakerjs.dev/api/person.html#zodiacSign) */
|
|
619
|
+
declare const zodiacSign: () => ValueConfig<string>;
|
|
620
|
+
|
|
621
|
+
declare const person_bio: typeof bio;
|
|
622
|
+
declare const person_firstName: typeof firstName;
|
|
623
|
+
declare const person_fullName: typeof fullName;
|
|
624
|
+
declare const person_gender: typeof gender;
|
|
625
|
+
declare const person_jobArea: typeof jobArea;
|
|
626
|
+
declare const person_jobDescriptor: typeof jobDescriptor;
|
|
627
|
+
declare const person_jobTitle: typeof jobTitle;
|
|
628
|
+
declare const person_jobType: typeof jobType;
|
|
629
|
+
declare const person_lastName: typeof lastName;
|
|
630
|
+
declare const person_middleName: typeof middleName;
|
|
631
|
+
declare const person_prefix: typeof prefix;
|
|
632
|
+
declare const person_sex: typeof sex;
|
|
633
|
+
declare const person_sexType: typeof sexType;
|
|
634
|
+
declare const person_suffix: typeof suffix;
|
|
635
|
+
declare const person_zodiacSign: typeof zodiacSign;
|
|
636
|
+
declare namespace person {
|
|
637
|
+
export { person_bio as bio, person_firstName as firstName, person_fullName as fullName, person_gender as gender, person_jobArea as jobArea, person_jobDescriptor as jobDescriptor, person_jobTitle as jobTitle, person_jobType as jobType, person_lastName as lastName, person_middleName as middleName, person_prefix as prefix, person_sex as sex, person_sexType as sexType, person_suffix as suffix, person_zodiacSign as zodiacSign };
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
/** Phone [imei](https://fakerjs.dev/api/phone.html#imei) */
|
|
641
|
+
declare const imei: () => ValueConfig<string>;
|
|
642
|
+
/** Phone [number](https://fakerjs.dev/api/phone.html#number) */
|
|
643
|
+
declare const number: (options?: {
|
|
644
|
+
style?: "human" | "national" | "international";
|
|
645
|
+
}) => ValueConfig<string>;
|
|
646
|
+
|
|
647
|
+
declare const phone_imei: typeof imei;
|
|
648
|
+
declare const phone_number: typeof number;
|
|
649
|
+
declare namespace phone {
|
|
650
|
+
export { phone_imei as imei, phone_number as number };
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
/** String [alpha](https://fakerjs.dev/api/string.html#alpha) */
|
|
654
|
+
declare const alpha: (options?: number | {
|
|
655
|
+
length?: number | {
|
|
656
|
+
min: number;
|
|
657
|
+
max: number;
|
|
658
|
+
};
|
|
659
|
+
casing?: "lower" | "upper" | "mixed";
|
|
660
|
+
exclude?: ReadonlyArray<(("a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z") | ("A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z")) | (string & {
|
|
661
|
+
zz_IGNORE_ME?: never;
|
|
662
|
+
})> | string;
|
|
663
|
+
}) => ValueConfig<string>;
|
|
664
|
+
/** String [alphanumeric](https://fakerjs.dev/api/string.html#alphanumeric) */
|
|
665
|
+
declare const alphanumeric: (options?: number | {
|
|
666
|
+
length?: number | {
|
|
667
|
+
min: number;
|
|
668
|
+
max: number;
|
|
669
|
+
};
|
|
670
|
+
casing?: "lower" | "upper" | "mixed";
|
|
671
|
+
exclude?: ReadonlyArray<(string & {
|
|
672
|
+
zz_IGNORE_ME?: never;
|
|
673
|
+
}) | ((("a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z") | ("A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z")) | ("0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"))> | string;
|
|
674
|
+
}) => ValueConfig<string>;
|
|
675
|
+
/** String [binary](https://fakerjs.dev/api/string.html#binary) */
|
|
676
|
+
declare const binary: (options?: {
|
|
677
|
+
length?: number | {
|
|
678
|
+
min: number;
|
|
679
|
+
max: number;
|
|
680
|
+
};
|
|
681
|
+
prefix?: string;
|
|
682
|
+
}) => ValueConfig<string>;
|
|
683
|
+
/** String [fromCharacters](https://fakerjs.dev/api/string.html#fromCharacters) */
|
|
684
|
+
declare const fromCharacters: (characters: string | readonly string[], length?: number | {
|
|
685
|
+
min: number;
|
|
686
|
+
max: number;
|
|
687
|
+
}) => ValueConfig<string>;
|
|
688
|
+
/** String [hexadecimal](https://fakerjs.dev/api/string.html#hexadecimal) */
|
|
689
|
+
declare const hexadecimal: (options?: {
|
|
690
|
+
length?: number | {
|
|
691
|
+
min: number;
|
|
692
|
+
max: number;
|
|
693
|
+
};
|
|
694
|
+
casing?: "lower" | "upper" | "mixed";
|
|
695
|
+
prefix?: string;
|
|
696
|
+
}) => ValueConfig<string>;
|
|
697
|
+
/** String [nanoid](https://fakerjs.dev/api/string.html#nanoid) */
|
|
698
|
+
declare const nanoid: (length?: number | {
|
|
699
|
+
min: number;
|
|
700
|
+
max: number;
|
|
701
|
+
}) => ValueConfig<string>;
|
|
702
|
+
/** String [octal](https://fakerjs.dev/api/string.html#octal) */
|
|
703
|
+
declare const octal: (options?: {
|
|
704
|
+
length?: number | {
|
|
705
|
+
min: number;
|
|
706
|
+
max: number;
|
|
707
|
+
};
|
|
708
|
+
prefix?: string;
|
|
709
|
+
}) => ValueConfig<string>;
|
|
710
|
+
/** String [sample](https://fakerjs.dev/api/string.html#sample) */
|
|
711
|
+
declare const sample: (length?: number | {
|
|
712
|
+
min: number;
|
|
713
|
+
max: number;
|
|
714
|
+
}) => ValueConfig<string>;
|
|
715
|
+
/** String [symbol](https://fakerjs.dev/api/string.html#symbol) */
|
|
716
|
+
declare const symbol: (length?: number | {
|
|
717
|
+
min: number;
|
|
718
|
+
max: number;
|
|
719
|
+
}) => ValueConfig<string>;
|
|
720
|
+
/** String [uuid](https://fakerjs.dev/api/string.html#uuid) */
|
|
721
|
+
declare const uuid: () => ValueConfig<string>;
|
|
722
|
+
|
|
723
|
+
declare const string_alpha: typeof alpha;
|
|
724
|
+
declare const string_alphanumeric: typeof alphanumeric;
|
|
725
|
+
declare const string_binary: typeof binary;
|
|
726
|
+
declare const string_fromCharacters: typeof fromCharacters;
|
|
727
|
+
declare const string_hexadecimal: typeof hexadecimal;
|
|
728
|
+
declare const string_nanoid: typeof nanoid;
|
|
729
|
+
declare const string_octal: typeof octal;
|
|
730
|
+
declare const string_sample: typeof sample;
|
|
731
|
+
declare const string_symbol: typeof symbol;
|
|
732
|
+
declare const string_uuid: typeof uuid;
|
|
733
|
+
declare namespace string {
|
|
734
|
+
export { string_alpha as alpha, string_alphanumeric as alphanumeric, string_binary as binary, string_fromCharacters as fromCharacters, string_hexadecimal as hexadecimal, string_nanoid as nanoid, string_octal as octal, string_sample as sample, string_symbol as symbol, string_uuid as uuid };
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
export { airline as Airline, animal as Animal, type ArrayConfig, type BoundedSeriesConfig, color as Color, commerce as Commerce, common as Common, company as Company, database as Database, datatype as Datatype, datetime as DateTime, finance as Finance, lorem as Lorem, number$1 as Number, type ObjectConfig, person as Person, phone as Phone, type Result, type SelectionConfig, string as String, type TupleConfig, type ValueConfig, createArrayConfig, createArrayGenerator, createBoundedSeriesConfig, createBoundedSeriesGenerator, createGeneratorByType, createObjectConfig, createObjectGenerator, createSelectionConfig, createSelectionGenerator, createTupleConfig, createTupleGenerator, createValueConfig, createValueGenerator };
|