struct-fakerator 2.6.9 → 2.8.9

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.
Files changed (300) hide show
  1. package/README.md +148 -93
  2. package/biome.json +30 -26
  3. package/dist/config.d.ts +1 -2
  4. package/dist/config.js +51 -19
  5. package/dist/config.mjs +2 -19
  6. package/dist/config_scheme.d.ts +7 -10
  7. package/dist/config_scheme.js +95 -17
  8. package/dist/config_scheme.mjs +46 -17
  9. package/dist/create_config.d.ts +9 -11
  10. package/dist/create_config.js +110 -18
  11. package/dist/create_config.mjs +60 -17
  12. package/dist/create_config.test.d.ts +1 -2
  13. package/dist/create_generator_fn.d.ts +9 -11
  14. package/dist/create_generator_fn.js +168 -21
  15. package/dist/create_generator_fn.mjs +115 -20
  16. package/dist/create_generator_fn.test.d.ts +1 -2
  17. package/dist/generator_fn.d.ts +1 -2
  18. package/dist/generator_fn.js +54 -22
  19. package/dist/generator_fn.mjs +2 -22
  20. package/dist/index.d.ts +5 -5
  21. package/dist/index.js +107 -44
  22. package/dist/index.mjs +6 -44
  23. package/dist/type.d.ts +10 -12
  24. package/dist/type.js +18 -1
  25. package/dist/type.mjs +0 -1
  26. package/dist/utils/airline.d.ts +14 -3
  27. package/dist/utils/airline.js +46 -15
  28. package/dist/utils/airline.mjs +6 -15
  29. package/dist/utils/animal.d.ts +30 -2
  30. package/dist/utils/animal.js +94 -39
  31. package/dist/utils/animal.mjs +18 -39
  32. package/dist/utils/color.d.ts +41 -3
  33. package/dist/utils/color.js +78 -31
  34. package/dist/utils/color.mjs +14 -31
  35. package/dist/utils/commerce.d.ts +24 -2
  36. package/dist/utils/commerce.js +66 -25
  37. package/dist/utils/commerce.mjs +11 -25
  38. package/dist/utils/common.d.ts +2 -2
  39. package/dist/utils/common.js +37 -9
  40. package/dist/utils/common.mjs +3 -9
  41. package/dist/utils/company.d.ts +18 -2
  42. package/dist/utils/company.js +70 -27
  43. package/dist/utils/company.mjs +12 -27
  44. package/dist/utils/database.d.ts +10 -2
  45. package/dist/utils/database.js +54 -19
  46. package/dist/utils/database.mjs +8 -19
  47. package/dist/utils/datatype.d.ts +4 -2
  48. package/dist/utils/datatype.js +38 -11
  49. package/dist/utils/datatype.mjs +4 -11
  50. package/dist/utils/datetime.d.ts +59 -2
  51. package/dist/utils/datetime.js +78 -31
  52. package/dist/utils/datetime.mjs +14 -31
  53. package/dist/utils/finance.d.ts +62 -3
  54. package/dist/utils/finance.js +110 -47
  55. package/dist/utils/finance.mjs +22 -47
  56. package/dist/utils/food.d.ts +18 -2
  57. package/dist/utils/food.js +70 -27
  58. package/dist/utils/food.mjs +12 -27
  59. package/dist/utils/git.d.ts +18 -2
  60. package/dist/utils/git.js +54 -19
  61. package/dist/utils/git.mjs +8 -19
  62. package/dist/utils/hacker.d.ts +12 -2
  63. package/dist/utils/hacker.js +58 -21
  64. package/dist/utils/hacker.mjs +9 -21
  65. package/dist/utils/image.d.ts +40 -2
  66. package/dist/utils/image.js +66 -25
  67. package/dist/utils/image.mjs +11 -25
  68. package/dist/utils/index.d.ts +26 -28
  69. package/dist/utils/index.js +136 -110
  70. package/dist/utils/index.mjs +27 -110
  71. package/dist/utils/internet.d.ts +77 -3
  72. package/dist/utils/internet.js +114 -49
  73. package/dist/utils/internet.mjs +23 -49
  74. package/dist/utils/location.d.ts +56 -2
  75. package/dist/utils/location.js +98 -41
  76. package/dist/utils/location.mjs +19 -41
  77. package/dist/utils/lorem.d.ts +45 -2
  78. package/dist/utils/lorem.js +70 -27
  79. package/dist/utils/lorem.mjs +12 -27
  80. package/dist/utils/music.d.ts +8 -2
  81. package/dist/utils/music.js +50 -17
  82. package/dist/utils/music.mjs +7 -17
  83. package/dist/utils/number.d.ts +34 -2
  84. package/dist/utils/number.js +58 -21
  85. package/dist/utils/number.mjs +9 -21
  86. package/dist/utils/person.d.ts +34 -3
  87. package/dist/utils/person.js +94 -39
  88. package/dist/utils/person.mjs +18 -39
  89. package/dist/utils/phone.d.ts +6 -2
  90. package/dist/utils/phone.js +42 -13
  91. package/dist/utils/phone.mjs +5 -13
  92. package/dist/utils/science.d.ts +4 -3
  93. package/dist/utils/science.js +42 -13
  94. package/dist/utils/science.mjs +5 -13
  95. package/dist/utils/string.d.ts +69 -2
  96. package/dist/utils/string.js +74 -29
  97. package/dist/utils/string.mjs +13 -29
  98. package/dist/utils/system.d.ts +35 -2
  99. package/dist/utils/system.js +82 -33
  100. package/dist/utils/system.mjs +15 -33
  101. package/dist/utils/utils.d.ts +2 -2
  102. package/dist/utils/utils.js +39 -9
  103. package/dist/utils/utils.mjs +5 -9
  104. package/dist/utils/vehicle.d.ts +18 -2
  105. package/dist/utils/vehicle.js +70 -27
  106. package/dist/utils/vehicle.mjs +12 -27
  107. package/dist/utils/word.d.ts +18 -22
  108. package/dist/utils/word.js +70 -31
  109. package/dist/utils/word.mjs +12 -31
  110. package/package.json +10 -31
  111. package/pnpm-workspace.yaml +2 -0
  112. package/rslib.config.ts +26 -0
  113. package/src/config.ts +3 -3
  114. package/src/config_scheme.ts +1 -1
  115. package/src/create_config.test.ts +0 -1
  116. package/src/create_config.ts +1 -1
  117. package/src/create_generator_fn.test.ts +13 -2
  118. package/src/create_generator_fn.ts +5 -5
  119. package/src/generator_fn.ts +1 -1
  120. package/src/index.ts +2 -2
  121. package/src/type.ts +1 -1
  122. package/src/utils/index.ts +1 -2
  123. package/src/utils/internet.ts +1 -1
  124. package/src/utils/utils.ts +1 -1
  125. package/tsconfig.json +2 -1
  126. package/dist/airline-98MCzMN8.d.ts +0 -26
  127. package/dist/airline-CuAxOEYH.d.mts +0 -26
  128. package/dist/animal-BohQ7s0w.d.mts +0 -53
  129. package/dist/animal-o8BFF7gd.d.ts +0 -53
  130. package/dist/chunk-23I6D5SJ.js +0 -57
  131. package/dist/chunk-3KXIZTCT.mjs +0 -20
  132. package/dist/chunk-3U6BNHWG.mjs +0 -2040
  133. package/dist/chunk-4DDCMYY5.mjs +0 -57
  134. package/dist/chunk-4VNS5WPM.js +0 -42
  135. package/dist/chunk-5KF6D2RT.js +0 -63
  136. package/dist/chunk-5O3L5474.mjs +0 -45
  137. package/dist/chunk-5PCDQHI5.mjs +0 -21
  138. package/dist/chunk-62INTWCD.mjs +0 -36
  139. package/dist/chunk-6HRHPVPM.js +0 -35
  140. package/dist/chunk-6UFUX7X4.js +0 -51
  141. package/dist/chunk-6ZK2LMFM.js +0 -21
  142. package/dist/chunk-7BIWHK77.js +0 -42
  143. package/dist/chunk-7UQSPUCL.mjs +0 -0
  144. package/dist/chunk-7VOPOQZO.js +0 -45
  145. package/dist/chunk-C3RGM3CB.js +0 -67
  146. package/dist/chunk-DGW666Q6.mjs +0 -48
  147. package/dist/chunk-DM5VFX6B.js +0 -17008
  148. package/dist/chunk-DTC7Q7P5.js +0 -45
  149. package/dist/chunk-EM67LVYX.mjs +0 -18
  150. package/dist/chunk-EMCK2BLM.js +0 -45
  151. package/dist/chunk-ES2CYGB7.js +0 -24
  152. package/dist/chunk-ET6EJB33.js +0 -36
  153. package/dist/chunk-EYOBG3PQ.mjs +0 -45
  154. package/dist/chunk-F4GVSNLH.js +0 -30
  155. package/dist/chunk-G43WDHZO.mjs +0 -63
  156. package/dist/chunk-GJSTX6ZS.mjs +0 -24
  157. package/dist/chunk-GYF6YSNX.js +0 -74
  158. package/dist/chunk-HBJP434N.mjs +0 -78
  159. package/dist/chunk-IAR3DUKD.js +0 -49
  160. package/dist/chunk-IL4E3ZNB.js +0 -78
  161. package/dist/chunk-IOXGSFEU.js +0 -20
  162. package/dist/chunk-JB6NCVX3.mjs +0 -63
  163. package/dist/chunk-JGY3KVDU.mjs +0 -45
  164. package/dist/chunk-JWCDEYMY.js +0 -48
  165. package/dist/chunk-LSFOERXQ.js +0 -18
  166. package/dist/chunk-MGR2M7BS.mjs +0 -56
  167. package/dist/chunk-MLJAHDYX.mjs +0 -167
  168. package/dist/chunk-MROZIQOV.mjs +0 -51
  169. package/dist/chunk-NHYNERHW.js +0 -56
  170. package/dist/chunk-PGSJJESY.js +0 -27
  171. package/dist/chunk-QTVSUA5W.mjs +0 -24
  172. package/dist/chunk-QZQ32UPU.mjs +0 -28
  173. package/dist/chunk-R2MQ3IW5.mjs +0 -33
  174. package/dist/chunk-RD2SB2KT.js +0 -36
  175. package/dist/chunk-RDZI4CMI.mjs +0 -42
  176. package/dist/chunk-RTYV5XDU.mjs +0 -36
  177. package/dist/chunk-RZPUHXXO.mjs +0 -49
  178. package/dist/chunk-SD3HVRQN.mjs +0 -48
  179. package/dist/chunk-SN4QTD6R.js +0 -1
  180. package/dist/chunk-TA725QXR.mjs +0 -35
  181. package/dist/chunk-TXAOQHVV.mjs +0 -27
  182. package/dist/chunk-TZ2RKEBF.js +0 -2040
  183. package/dist/chunk-U7MLTDS4.js +0 -167
  184. package/dist/chunk-UIYW7U2O.js +0 -28
  185. package/dist/chunk-UP2JIDGZ.js +0 -81
  186. package/dist/chunk-USLYTOPD.mjs +0 -41
  187. package/dist/chunk-V2AWKRQI.js +0 -26
  188. package/dist/chunk-VE3Q5LC3.mjs +0 -26
  189. package/dist/chunk-VG6JYCUC.mjs +0 -74
  190. package/dist/chunk-VMSMHNPY.js +0 -48
  191. package/dist/chunk-VSZRD7CB.js +0 -33
  192. package/dist/chunk-VX2IFBCP.mjs +0 -17008
  193. package/dist/chunk-WLKNXHFN.mjs +0 -30
  194. package/dist/chunk-XGB3TDIC.mjs +0 -42
  195. package/dist/chunk-YXGKUR3R.js +0 -63
  196. package/dist/chunk-Z5BNMPTX.mjs +0 -81
  197. package/dist/chunk-ZQA42PYM.mjs +0 -67
  198. package/dist/chunk-ZSR4TJQG.js +0 -24
  199. package/dist/chunk-ZWLHVT5O.js +0 -41
  200. package/dist/color-BT6BF8oV.d.mts +0 -61
  201. package/dist/color-lBH29suB.d.ts +0 -61
  202. package/dist/commerce-BqVjXEhQ.d.mts +0 -40
  203. package/dist/commerce-mdOpchjx.d.ts +0 -40
  204. package/dist/common-IR_KozaJ.d.mts +0 -11
  205. package/dist/common-t-ZQebCq.d.ts +0 -11
  206. package/dist/company-C3EU1J7k.d.ts +0 -35
  207. package/dist/company-cR_0hm6U.d.mts +0 -35
  208. package/dist/config-BTjogu5M.d.ts +0 -7
  209. package/dist/config-C1N2Brw-.d.mts +0 -7
  210. package/dist/config.d.mts +0 -2
  211. package/dist/config_scheme.d.mts +0 -32
  212. package/dist/create_config.d.mts +0 -58
  213. package/dist/create_config.test.d.mts +0 -2
  214. package/dist/create_config.test.js +0 -63
  215. package/dist/create_config.test.mjs +0 -63
  216. package/dist/create_generator_fn.d.mts +0 -12
  217. package/dist/create_generator_fn.test.d.mts +0 -2
  218. package/dist/create_generator_fn.test.js +0 -191
  219. package/dist/create_generator_fn.test.mjs +0 -191
  220. package/dist/database-DV9wgnca.d.ts +0 -23
  221. package/dist/database-UzO1Lwec.d.mts +0 -23
  222. package/dist/datatype-C92TZLxo.d.ts +0 -13
  223. package/dist/datatype-DZjmP0fA.d.mts +0 -13
  224. package/dist/datetime-CSUpnUXU.d.ts +0 -78
  225. package/dist/datetime-dnPA_lnt.d.mts +0 -78
  226. package/dist/finance-CstKW1nH.d.mts +0 -90
  227. package/dist/finance-gj0fiEmf.d.ts +0 -90
  228. package/dist/food-CInj1GX2.d.ts +0 -35
  229. package/dist/food-Dk3-40CY.d.mts +0 -35
  230. package/dist/generator_fn-CJDbnCZl.d.mts +0 -7
  231. package/dist/generator_fn-D-npAfnC.d.ts +0 -7
  232. package/dist/generator_fn.d.mts +0 -2
  233. package/dist/git-BHL1ppL4.d.ts +0 -31
  234. package/dist/git-w0nznSjX.d.mts +0 -31
  235. package/dist/hacker-DL7pR6JO.d.ts +0 -26
  236. package/dist/hacker-FcQXZGtz.d.mts +0 -26
  237. package/dist/image-B5OPCNhD.d.mts +0 -56
  238. package/dist/image-IyGCgqNf.d.ts +0 -56
  239. package/dist/index.d.mts +0 -5
  240. package/dist/internet-BukCBMX-.d.ts +0 -106
  241. package/dist/internet-C2ElurWb.d.mts +0 -106
  242. package/dist/location-BIZ-KsaI.d.ts +0 -80
  243. package/dist/location-WU_nRdjx.d.mts +0 -80
  244. package/dist/lorem-OlHaVntu.d.mts +0 -62
  245. package/dist/lorem-yMyLb-d-.d.ts +0 -62
  246. package/dist/magic-string.es-2DLPM6Q3.js +0 -1299
  247. package/dist/magic-string.es-NHTKQXSF.mjs +0 -1299
  248. package/dist/music-P8XZ4JSO.d.ts +0 -20
  249. package/dist/music-vcWm9dzu.d.mts +0 -20
  250. package/dist/number-BfwwKvTJ.d.mts +0 -48
  251. package/dist/number-D5QmTRsK.d.ts +0 -48
  252. package/dist/person-DXne2mKX.d.ts +0 -58
  253. package/dist/person-Si_vy67g.d.mts +0 -58
  254. package/dist/phone-Cbxvm_Qv.d.ts +0 -16
  255. package/dist/phone-g4FDs50M.d.mts +0 -16
  256. package/dist/science-BX8WhoEY.d.ts +0 -15
  257. package/dist/science-BfA9sVXz.d.mts +0 -15
  258. package/dist/string-DGScZrrP.d.mts +0 -87
  259. package/dist/string-Do4vhsl0.d.ts +0 -87
  260. package/dist/system-BpxbduIr.d.ts +0 -55
  261. package/dist/system-Cy0e05Cr.d.mts +0 -55
  262. package/dist/test.d.mts +0 -2
  263. package/dist/test.d.ts +0 -2
  264. package/dist/test.js +0 -15
  265. package/dist/test.mjs +0 -15
  266. package/dist/type.d.mts +0 -93
  267. package/dist/utils/airline.d.mts +0 -3
  268. package/dist/utils/animal.d.mts +0 -2
  269. package/dist/utils/color.d.mts +0 -3
  270. package/dist/utils/commerce.d.mts +0 -2
  271. package/dist/utils/common.d.mts +0 -2
  272. package/dist/utils/company.d.mts +0 -2
  273. package/dist/utils/database.d.mts +0 -2
  274. package/dist/utils/datatype.d.mts +0 -2
  275. package/dist/utils/datetime.d.mts +0 -2
  276. package/dist/utils/finance.d.mts +0 -3
  277. package/dist/utils/food.d.mts +0 -2
  278. package/dist/utils/git.d.mts +0 -2
  279. package/dist/utils/hacker.d.mts +0 -2
  280. package/dist/utils/image.d.mts +0 -2
  281. package/dist/utils/index.d.mts +0 -28
  282. package/dist/utils/internet.d.mts +0 -3
  283. package/dist/utils/location.d.mts +0 -2
  284. package/dist/utils/lorem.d.mts +0 -2
  285. package/dist/utils/music.d.mts +0 -2
  286. package/dist/utils/number.d.mts +0 -2
  287. package/dist/utils/person.d.mts +0 -3
  288. package/dist/utils/phone.d.mts +0 -2
  289. package/dist/utils/science.d.mts +0 -3
  290. package/dist/utils/string.d.mts +0 -2
  291. package/dist/utils/system.d.mts +0 -2
  292. package/dist/utils/utils.d.mts +0 -2
  293. package/dist/utils/vehicle.d.mts +0 -2
  294. package/dist/utils/word.d.mts +0 -75
  295. package/dist/utils-BImnOpvp.d.ts +0 -10
  296. package/dist/utils-zJKwaMUY.d.mts +0 -10
  297. package/dist/vehicle-D4yBDYMc.d.mts +0 -35
  298. package/dist/vehicle-Ufz4AoXu.d.ts +0 -35
  299. package/src/test.ts +0 -10
  300. package/tsup.config.ts +0 -8
@@ -1,30 +0,0 @@
1
- import {
2
- makeValueConfigFn
3
- } from "./chunk-3KXIZTCT.mjs";
4
- import {
5
- f
6
- } from "./chunk-3U6BNHWG.mjs";
7
- import {
8
- __export
9
- } from "./chunk-XGB3TDIC.mjs";
10
-
11
- // src/utils/music.ts
12
- var music_exports = {};
13
- __export(music_exports, {
14
- album: () => album,
15
- artist: () => artist,
16
- genre: () => genre,
17
- songName: () => songName
18
- });
19
- var album = makeValueConfigFn(f.music.album);
20
- var artist = makeValueConfigFn(f.music.artist);
21
- var genre = makeValueConfigFn(f.music.genre);
22
- var songName = makeValueConfigFn(f.music.songName);
23
-
24
- export {
25
- album,
26
- artist,
27
- genre,
28
- songName,
29
- music_exports
30
- };
@@ -1,42 +0,0 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
8
- get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
9
- }) : x)(function(x) {
10
- if (typeof require !== "undefined") return require.apply(this, arguments);
11
- throw Error('Dynamic require of "' + x + '" is not supported');
12
- });
13
- var __commonJS = (cb, mod) => function __require2() {
14
- return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
15
- };
16
- var __export = (target, all) => {
17
- for (var name in all)
18
- __defProp(target, name, { get: all[name], enumerable: true });
19
- };
20
- var __copyProps = (to, from, except, desc) => {
21
- if (from && typeof from === "object" || typeof from === "function") {
22
- for (let key of __getOwnPropNames(from))
23
- if (!__hasOwnProp.call(to, key) && key !== except)
24
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
25
- }
26
- return to;
27
- };
28
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
29
- // If the importer is in node compatibility mode or this is not an ESM
30
- // file that has been converted to a CommonJS file using a Babel-
31
- // compatible transform (i.e. "__esModule" has not been set), then set
32
- // "default" to the CommonJS "module.exports" for node compatibility.
33
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
34
- mod
35
- ));
36
-
37
- export {
38
- __require,
39
- __commonJS,
40
- __export,
41
- __toESM
42
- };
@@ -1,63 +0,0 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
-
3
- var _chunkIOXGSFEUjs = require('./chunk-IOXGSFEU.js');
4
-
5
-
6
- var _chunkTZ2RKEBFjs = require('./chunk-TZ2RKEBF.js');
7
-
8
-
9
- var _chunk4VNS5WPMjs = require('./chunk-4VNS5WPM.js');
10
-
11
- // src/utils/person.ts
12
- var person_exports = {};
13
- _chunk4VNS5WPMjs.__export.call(void 0, person_exports, {
14
- bio: () => bio,
15
- firstName: () => firstName,
16
- fullName: () => fullName,
17
- gender: () => gender,
18
- jobArea: () => jobArea,
19
- jobDescriptor: () => jobDescriptor,
20
- jobTitle: () => jobTitle,
21
- jobType: () => jobType,
22
- lastName: () => lastName,
23
- middleName: () => middleName,
24
- prefix: () => prefix,
25
- sex: () => sex,
26
- sexType: () => sexType,
27
- suffix: () => suffix,
28
- zodiacSign: () => zodiacSign
29
- });
30
- var bio = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.bio);
31
- var firstName = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.firstName);
32
- var fullName = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.fullName);
33
- var gender = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.gender);
34
- var jobArea = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.jobArea);
35
- var jobDescriptor = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.jobDescriptor);
36
- var jobTitle = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.jobTitle);
37
- var jobType = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.jobType);
38
- var lastName = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.lastName);
39
- var middleName = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.middleName);
40
- var prefix = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.prefix);
41
- var sex = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.sex);
42
- var sexType = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.sexType);
43
- var suffix = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.suffix);
44
- var zodiacSign = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.person.zodiacSign);
45
-
46
-
47
-
48
-
49
-
50
-
51
-
52
-
53
-
54
-
55
-
56
-
57
-
58
-
59
-
60
-
61
-
62
-
63
- exports.bio = bio; exports.firstName = firstName; exports.fullName = fullName; exports.gender = gender; exports.jobArea = jobArea; exports.jobDescriptor = jobDescriptor; exports.jobTitle = jobTitle; exports.jobType = jobType; exports.lastName = lastName; exports.middleName = middleName; exports.prefix = prefix; exports.sex = sex; exports.sexType = sexType; exports.suffix = suffix; exports.zodiacSign = zodiacSign; exports.person_exports = person_exports;
@@ -1,81 +0,0 @@
1
- import {
2
- makeValueConfigFn
3
- } from "./chunk-3KXIZTCT.mjs";
4
- import {
5
- f
6
- } from "./chunk-3U6BNHWG.mjs";
7
- import {
8
- __export
9
- } from "./chunk-XGB3TDIC.mjs";
10
-
11
- // src/utils/finance.ts
12
- var finance_exports = {};
13
- __export(finance_exports, {
14
- accountName: () => accountName,
15
- accountNumber: () => accountNumber,
16
- amount: () => amount,
17
- bic: () => bic,
18
- bitcoinAddress: () => bitcoinAddress,
19
- creditCardCVV: () => creditCardCVV,
20
- creditCardIssuer: () => creditCardIssuer,
21
- creditCardNumber: () => creditCardNumber,
22
- currency: () => currency,
23
- currencyCode: () => currencyCode,
24
- currencySymbol: () => currencySymbol,
25
- ethereumAddress: () => ethereumAddress,
26
- iban: () => iban,
27
- litecoinAddress: () => litecoinAddress,
28
- maskedNumber: () => maskedNumber,
29
- pin: () => pin,
30
- routingNumber: () => routingNumber,
31
- transactionDescription: () => transactionDescription,
32
- transactionType: () => transactionType
33
- });
34
- var accountName = makeValueConfigFn(f.finance.accountName);
35
- var accountNumber = makeValueConfigFn(f.finance.accountNumber);
36
- var amount = makeValueConfigFn(f.finance.amount);
37
- var bic = makeValueConfigFn(f.finance.bic);
38
- var bitcoinAddress = makeValueConfigFn(f.finance.bitcoinAddress);
39
- var creditCardCVV = makeValueConfigFn(f.finance.creditCardCVV);
40
- var creditCardIssuer = makeValueConfigFn(
41
- f.finance.creditCardIssuer
42
- );
43
- var creditCardNumber = makeValueConfigFn(
44
- f.finance.creditCardNumber
45
- );
46
- var currency = makeValueConfigFn(f.finance.currency);
47
- var currencyCode = makeValueConfigFn(f.finance.currencyCode);
48
- var currencySymbol = makeValueConfigFn(f.finance.currencySymbol);
49
- var ethereumAddress = makeValueConfigFn(f.finance.ethereumAddress);
50
- var iban = makeValueConfigFn(f.finance.iban);
51
- var litecoinAddress = makeValueConfigFn(f.finance.litecoinAddress);
52
- var maskedNumber = makeValueConfigFn(f.finance.maskedNumber);
53
- var pin = makeValueConfigFn(f.finance.pin);
54
- var routingNumber = makeValueConfigFn(f.finance.routingNumber);
55
- var transactionDescription = makeValueConfigFn(
56
- f.finance.transactionDescription
57
- );
58
- var transactionType = makeValueConfigFn(f.finance.transactionType);
59
-
60
- export {
61
- accountName,
62
- accountNumber,
63
- amount,
64
- bic,
65
- bitcoinAddress,
66
- creditCardCVV,
67
- creditCardIssuer,
68
- creditCardNumber,
69
- currency,
70
- currencyCode,
71
- currencySymbol,
72
- ethereumAddress,
73
- iban,
74
- litecoinAddress,
75
- maskedNumber,
76
- pin,
77
- routingNumber,
78
- transactionDescription,
79
- transactionType,
80
- finance_exports
81
- };
@@ -1,67 +0,0 @@
1
- import {
2
- arrayConfigScheme,
3
- boundedSeriesScheme,
4
- objConfigScheme,
5
- selectionConfigScheme,
6
- tupleConfigScheme,
7
- valueConfigScheme
8
- } from "./chunk-USLYTOPD.mjs";
9
-
10
- // src/create_config.ts
11
- var createValueConfig = (generateFn) => {
12
- const config = {
13
- type: "value",
14
- generateFn
15
- };
16
- valueConfigScheme.parse(config);
17
- return config;
18
- };
19
- var createSelectionConfig = (items) => {
20
- const config = { type: "select", items };
21
- selectionConfigScheme.parse(config);
22
- return config;
23
- };
24
- function createObjectConfig(content, transformer) {
25
- if (transformer) {
26
- const config2 = {
27
- type: "obj",
28
- content,
29
- transformer
30
- };
31
- objConfigScheme.parse(config2);
32
- return config2;
33
- }
34
- const config = { type: "obj", content };
35
- objConfigScheme.parse(config);
36
- return config;
37
- }
38
- var createArrayConfig = (item, len, next) => {
39
- const config = { type: "arr", item, len, next };
40
- arrayConfigScheme.parse(config);
41
- return config;
42
- };
43
- var createTupleConfig = (configItems) => {
44
- const config = {
45
- type: "tuple",
46
- configItems
47
- };
48
- tupleConfigScheme.parse(config);
49
- return config;
50
- };
51
- var createBoundedSeriesConfig = (config) => {
52
- const newConfig = {
53
- type: "bounded_series",
54
- ...config
55
- };
56
- boundedSeriesScheme.parse(newConfig);
57
- return newConfig;
58
- };
59
-
60
- export {
61
- createValueConfig,
62
- createSelectionConfig,
63
- createObjectConfig,
64
- createArrayConfig,
65
- createTupleConfig,
66
- createBoundedSeriesConfig
67
- };
@@ -1,24 +0,0 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
-
3
- var _chunkIOXGSFEUjs = require('./chunk-IOXGSFEU.js');
4
-
5
-
6
- var _chunkTZ2RKEBFjs = require('./chunk-TZ2RKEBF.js');
7
-
8
-
9
- var _chunk4VNS5WPMjs = require('./chunk-4VNS5WPM.js');
10
-
11
- // src/utils/phone.ts
12
- var phone_exports = {};
13
- _chunk4VNS5WPMjs.__export.call(void 0, phone_exports, {
14
- imei: () => imei,
15
- number: () => number
16
- });
17
- var imei = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.phone.imei);
18
- var number = _chunkIOXGSFEUjs.makeValueConfigFn.call(void 0, _chunkTZ2RKEBFjs.f.phone.number);
19
-
20
-
21
-
22
-
23
-
24
- exports.imei = imei; exports.number = number; exports.phone_exports = phone_exports;
@@ -1,41 +0,0 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/config_scheme.ts
2
- var _v4 = require('zod/v4');
3
- var valueConfigScheme = _v4.z.object({
4
- type: _v4.z.string().regex(/^value$/, { message: "invalid type string" }),
5
- generateFn: _v4.z.any()
6
- });
7
- var selectionConfigScheme = _v4.z.object({
8
- type: _v4.z.string().regex(/^select$/, { message: "invalid type string" }),
9
- items: _v4.z.any().array().nonempty({ message: "items can not be empty" })
10
- });
11
- var arrayConfigScheme = _v4.z.object({
12
- type: _v4.z.string().regex(/^arr$/, { message: "invalid type string" }),
13
- item: _v4.z.object({}),
14
- len: _v4.z.number().nonnegative()
15
- });
16
- var tupleConfigScheme = _v4.z.object({
17
- type: _v4.z.string().regex(/^tuple$/, { message: "invalid type string" }),
18
- configItems: _v4.z.any().array()
19
- });
20
- var objConfigScheme = _v4.z.object({
21
- type: _v4.z.string().regex(/^obj$/, { message: "invalid type string" }),
22
- content: _v4.z.object({})
23
- });
24
- var boundedSeriesScheme = _v4.z.object({
25
- type: _v4.z.string().regex(/^bounded_series$/, { message: "invalid type string" }),
26
- upperLimit: _v4.z.number().nonnegative(),
27
- lowerLimit: _v4.z.number().nonnegative(),
28
- createInitValue: _v4.z.any(),
29
- count: _v4.z.number().nonnegative()
30
- }).refine(({ upperLimit, lowerLimit }) => upperLimit >= lowerLimit, {
31
- message: "lowerLimit can not greater then upperLimit"
32
- });
33
-
34
-
35
-
36
-
37
-
38
-
39
-
40
-
41
- exports.valueConfigScheme = valueConfigScheme; exports.selectionConfigScheme = selectionConfigScheme; exports.arrayConfigScheme = arrayConfigScheme; exports.tupleConfigScheme = tupleConfigScheme; exports.objConfigScheme = objConfigScheme; exports.boundedSeriesScheme = boundedSeriesScheme;
@@ -1,61 +0,0 @@
1
- import { ValueConfig } from './type.mjs';
2
- import * as _faker_js_faker__ from '@faker-js/faker/.';
3
-
4
- /** Color [cmyk](https://fakerjs.dev/api/color.html#cmyk) */
5
- declare const cmyk: (options?: {
6
- format?: _faker_js_faker__.ColorFormat;
7
- }) => ValueConfig<string | number[]>;
8
- /** Color [colorByCSSColorSpace](https://fakerjs.dev/api/color.html#colorByCSSColorSpace) */
9
- declare const colorByCSSColorSpace: (options?: {
10
- format?: _faker_js_faker__.ColorFormat;
11
- space?: _faker_js_faker__.CssSpaceType;
12
- }) => ValueConfig<string | number[]>;
13
- /** Color [cssSupportedFunction](https://fakerjs.dev/api/color.html#cssSupportedFunction) */
14
- declare const cssSupportedFunction: () => ValueConfig<"rgb" | "rgba" | "hsl" | "hsla" | "hwb" | "cmyk" | "lab" | "lch" | "color">;
15
- /** Color [cssSupportedSpace](https://fakerjs.dev/api/color.html#cssSupportedSpace) */
16
- declare const cssSupportedSpace: () => ValueConfig<"sRGB" | "display-p3" | "rec2020" | "a98-rgb" | "prophoto-rgb">;
17
- /** Color [hsl](https://fakerjs.dev/api/color.html#hsl) */
18
- declare const hsl: (options?: {
19
- format?: _faker_js_faker__.ColorFormat;
20
- includeAlpha?: boolean;
21
- }) => ValueConfig<string | number[]>;
22
- /** Color [human](https://fakerjs.dev/api/color.html#human) */
23
- declare const human: () => ValueConfig<string>;
24
- /** Color [hwb](https://fakerjs.dev/api/color.html#hwb) */
25
- declare const hwb: (options?: {
26
- format?: _faker_js_faker__.ColorFormat;
27
- }) => ValueConfig<string | number[]>;
28
- /** Color [lab](https://fakerjs.dev/api/color.html#lab) */
29
- declare const lab: (options?: {
30
- format?: _faker_js_faker__.ColorFormat;
31
- }) => ValueConfig<string | number[]>;
32
- /** Color [lch](https://fakerjs.dev/api/color.html#lch) */
33
- declare const lch: (options?: {
34
- format?: _faker_js_faker__.ColorFormat;
35
- }) => ValueConfig<string | number[]>;
36
- /** Color [rgb](https://fakerjs.dev/api/color.html#rgb) */
37
- declare const rgb: (options?: {
38
- prefix?: string;
39
- casing?: _faker_js_faker__.Casing;
40
- format?: "hex" | _faker_js_faker__.ColorFormat;
41
- includeAlpha?: boolean;
42
- }) => ValueConfig<string | number[]>;
43
- /** Color [space](https://fakerjs.dev/api/color.html#space) */
44
- declare const space: () => ValueConfig<string>;
45
-
46
- declare const color_cmyk: typeof cmyk;
47
- declare const color_colorByCSSColorSpace: typeof colorByCSSColorSpace;
48
- declare const color_cssSupportedFunction: typeof cssSupportedFunction;
49
- declare const color_cssSupportedSpace: typeof cssSupportedSpace;
50
- declare const color_hsl: typeof hsl;
51
- declare const color_human: typeof human;
52
- declare const color_hwb: typeof hwb;
53
- declare const color_lab: typeof lab;
54
- declare const color_lch: typeof lch;
55
- declare const color_rgb: typeof rgb;
56
- declare const color_space: typeof space;
57
- declare namespace color {
58
- 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 };
59
- }
60
-
61
- export { cmyk as a, colorByCSSColorSpace as b, color as c, cssSupportedFunction as d, cssSupportedSpace as e, human as f, hwb as g, hsl as h, lch as i, lab as l, rgb as r, space as s };
@@ -1,61 +0,0 @@
1
- import { ValueConfig } from './type.js';
2
- import * as _faker_js_faker__ from '@faker-js/faker/.';
3
-
4
- /** Color [cmyk](https://fakerjs.dev/api/color.html#cmyk) */
5
- declare const cmyk: (options?: {
6
- format?: _faker_js_faker__.ColorFormat;
7
- }) => ValueConfig<string | number[]>;
8
- /** Color [colorByCSSColorSpace](https://fakerjs.dev/api/color.html#colorByCSSColorSpace) */
9
- declare const colorByCSSColorSpace: (options?: {
10
- format?: _faker_js_faker__.ColorFormat;
11
- space?: _faker_js_faker__.CssSpaceType;
12
- }) => ValueConfig<string | number[]>;
13
- /** Color [cssSupportedFunction](https://fakerjs.dev/api/color.html#cssSupportedFunction) */
14
- declare const cssSupportedFunction: () => ValueConfig<"rgb" | "rgba" | "hsl" | "hsla" | "hwb" | "cmyk" | "lab" | "lch" | "color">;
15
- /** Color [cssSupportedSpace](https://fakerjs.dev/api/color.html#cssSupportedSpace) */
16
- declare const cssSupportedSpace: () => ValueConfig<"sRGB" | "display-p3" | "rec2020" | "a98-rgb" | "prophoto-rgb">;
17
- /** Color [hsl](https://fakerjs.dev/api/color.html#hsl) */
18
- declare const hsl: (options?: {
19
- format?: _faker_js_faker__.ColorFormat;
20
- includeAlpha?: boolean;
21
- }) => ValueConfig<string | number[]>;
22
- /** Color [human](https://fakerjs.dev/api/color.html#human) */
23
- declare const human: () => ValueConfig<string>;
24
- /** Color [hwb](https://fakerjs.dev/api/color.html#hwb) */
25
- declare const hwb: (options?: {
26
- format?: _faker_js_faker__.ColorFormat;
27
- }) => ValueConfig<string | number[]>;
28
- /** Color [lab](https://fakerjs.dev/api/color.html#lab) */
29
- declare const lab: (options?: {
30
- format?: _faker_js_faker__.ColorFormat;
31
- }) => ValueConfig<string | number[]>;
32
- /** Color [lch](https://fakerjs.dev/api/color.html#lch) */
33
- declare const lch: (options?: {
34
- format?: _faker_js_faker__.ColorFormat;
35
- }) => ValueConfig<string | number[]>;
36
- /** Color [rgb](https://fakerjs.dev/api/color.html#rgb) */
37
- declare const rgb: (options?: {
38
- prefix?: string;
39
- casing?: _faker_js_faker__.Casing;
40
- format?: "hex" | _faker_js_faker__.ColorFormat;
41
- includeAlpha?: boolean;
42
- }) => ValueConfig<string | number[]>;
43
- /** Color [space](https://fakerjs.dev/api/color.html#space) */
44
- declare const space: () => ValueConfig<string>;
45
-
46
- declare const color_cmyk: typeof cmyk;
47
- declare const color_colorByCSSColorSpace: typeof colorByCSSColorSpace;
48
- declare const color_cssSupportedFunction: typeof cssSupportedFunction;
49
- declare const color_cssSupportedSpace: typeof cssSupportedSpace;
50
- declare const color_hsl: typeof hsl;
51
- declare const color_human: typeof human;
52
- declare const color_hwb: typeof hwb;
53
- declare const color_lab: typeof lab;
54
- declare const color_lch: typeof lch;
55
- declare const color_rgb: typeof rgb;
56
- declare const color_space: typeof space;
57
- declare namespace color {
58
- 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 };
59
- }
60
-
61
- export { cmyk as a, colorByCSSColorSpace as b, color as c, cssSupportedFunction as d, cssSupportedSpace as e, human as f, hwb as g, hsl as h, lch as i, lab as l, rgb as r, space as s };
@@ -1,40 +0,0 @@
1
- import { ValueConfig } from './type.mjs';
2
-
3
- /** Commerce [department](https://fakerjs.dev/api/commerce.html#department) */
4
- declare const department: () => ValueConfig<string>;
5
- /** Commerce [isbn](https://fakerjs.dev/api/commerce.html#isbn) */
6
- declare const isbn: (options?: 10 | 13 | {
7
- variant?: 10 | 13;
8
- separator?: string;
9
- }) => ValueConfig<string>;
10
- /** Commerce [price](https://fakerjs.dev/api/commerce.html#price) */
11
- declare const price: (options?: {
12
- min?: number;
13
- max?: number;
14
- dec?: number;
15
- symbol?: string;
16
- }) => ValueConfig<string>;
17
- /** Commerce [product](https://fakerjs.dev/api/commerce.html#product) */
18
- declare const product: () => ValueConfig<string>;
19
- /** Commerce [productAdjective](https://fakerjs.dev/api/commerce.html#productAdjective) */
20
- declare const productAdjective: () => ValueConfig<string>;
21
- /** Commerce [productDescription](https://fakerjs.dev/api/commerce.html#productDescription) */
22
- declare const productDescription: () => ValueConfig<string>;
23
- /** Commerce [productMaterial](https://fakerjs.dev/api/commerce.html#productMaterial) */
24
- declare const productMaterial: () => ValueConfig<string>;
25
- /** Commerce [productName](https://fakerjs.dev/api/commerce.html#productName) */
26
- declare const productName: () => ValueConfig<string>;
27
-
28
- declare const commerce_department: typeof department;
29
- declare const commerce_isbn: typeof isbn;
30
- declare const commerce_price: typeof price;
31
- declare const commerce_product: typeof product;
32
- declare const commerce_productAdjective: typeof productAdjective;
33
- declare const commerce_productDescription: typeof productDescription;
34
- declare const commerce_productMaterial: typeof productMaterial;
35
- declare const commerce_productName: typeof productName;
36
- declare namespace commerce {
37
- 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 };
38
- }
39
-
40
- export { product as a, productAdjective as b, commerce as c, department as d, productDescription as e, productMaterial as f, productName as g, isbn as i, price as p };
@@ -1,40 +0,0 @@
1
- import { ValueConfig } from './type.js';
2
-
3
- /** Commerce [department](https://fakerjs.dev/api/commerce.html#department) */
4
- declare const department: () => ValueConfig<string>;
5
- /** Commerce [isbn](https://fakerjs.dev/api/commerce.html#isbn) */
6
- declare const isbn: (options?: 10 | 13 | {
7
- variant?: 10 | 13;
8
- separator?: string;
9
- }) => ValueConfig<string>;
10
- /** Commerce [price](https://fakerjs.dev/api/commerce.html#price) */
11
- declare const price: (options?: {
12
- min?: number;
13
- max?: number;
14
- dec?: number;
15
- symbol?: string;
16
- }) => ValueConfig<string>;
17
- /** Commerce [product](https://fakerjs.dev/api/commerce.html#product) */
18
- declare const product: () => ValueConfig<string>;
19
- /** Commerce [productAdjective](https://fakerjs.dev/api/commerce.html#productAdjective) */
20
- declare const productAdjective: () => ValueConfig<string>;
21
- /** Commerce [productDescription](https://fakerjs.dev/api/commerce.html#productDescription) */
22
- declare const productDescription: () => ValueConfig<string>;
23
- /** Commerce [productMaterial](https://fakerjs.dev/api/commerce.html#productMaterial) */
24
- declare const productMaterial: () => ValueConfig<string>;
25
- /** Commerce [productName](https://fakerjs.dev/api/commerce.html#productName) */
26
- declare const productName: () => ValueConfig<string>;
27
-
28
- declare const commerce_department: typeof department;
29
- declare const commerce_isbn: typeof isbn;
30
- declare const commerce_price: typeof price;
31
- declare const commerce_product: typeof product;
32
- declare const commerce_productAdjective: typeof productAdjective;
33
- declare const commerce_productDescription: typeof productDescription;
34
- declare const commerce_productMaterial: typeof productMaterial;
35
- declare const commerce_productName: typeof productName;
36
- declare namespace commerce {
37
- 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 };
38
- }
39
-
40
- export { product as a, productAdjective as b, commerce as c, department as d, productDescription as e, productMaterial as f, productName as g, isbn as i, price as p };
@@ -1,11 +0,0 @@
1
- import { ValueConfig } from './type.mjs';
2
-
3
- /** Common constant */
4
- declare const constant: <T>(value: T) => ValueConfig<T>;
5
-
6
- declare const common_constant: typeof constant;
7
- declare namespace common {
8
- export { common_constant as constant };
9
- }
10
-
11
- export { constant as a, common as c };
@@ -1,11 +0,0 @@
1
- import { ValueConfig } from './type.js';
2
-
3
- /** Common constant */
4
- declare const constant: <T>(value: T) => ValueConfig<T>;
5
-
6
- declare const common_constant: typeof constant;
7
- declare namespace common {
8
- export { common_constant as constant };
9
- }
10
-
11
- export { constant as a, common as c };
@@ -1,35 +0,0 @@
1
- import { ValueConfig } from './type.js';
2
-
3
- /** Company [buzzAdjective](https://fakerjs.dev/api/company.html#buzzAdjective) */
4
- declare const buzzAdjective: () => ValueConfig<string>;
5
- /** Company [buzzNoun](https://fakerjs.dev/api/company.html#buzzNoun) */
6
- declare const buzzNoun: () => ValueConfig<string>;
7
- /** Company [buzzPhrase](https://fakerjs.dev/api/company.html#buzzPhrase) */
8
- declare const buzzPhrase: () => ValueConfig<string>;
9
- /** Company [buzzVerb](https://fakerjs.dev/api/company.html#buzzVerb) */
10
- declare const buzzVerb: () => ValueConfig<string>;
11
- /** Company [catchPhrase](https://fakerjs.dev/api/company.html#catchPhrase) */
12
- declare const catchPhrase: () => ValueConfig<string>;
13
- /** Company [catchPhraseAdjective](https://fakerjs.dev/api/company.html#catchPhraseAdjective) */
14
- declare const catchPhraseAdjective: () => ValueConfig<string>;
15
- /** Company [catchPhraseDescriptor](https://fakerjs.dev/api/company.html#catchPhraseDescriptor) */
16
- declare const catchPhraseDescriptor: () => ValueConfig<string>;
17
- /** Company [catchPhraseNoun](https://fakerjs.dev/api/company.html#catchPhraseNoun) */
18
- declare const catchPhraseNoun: () => ValueConfig<string>;
19
- /** Company [name](https://fakerjs.dev/api/company.html#name) */
20
- declare const name: () => ValueConfig<string>;
21
-
22
- declare const company_buzzAdjective: typeof buzzAdjective;
23
- declare const company_buzzNoun: typeof buzzNoun;
24
- declare const company_buzzPhrase: typeof buzzPhrase;
25
- declare const company_buzzVerb: typeof buzzVerb;
26
- declare const company_catchPhrase: typeof catchPhrase;
27
- declare const company_catchPhraseAdjective: typeof catchPhraseAdjective;
28
- declare const company_catchPhraseDescriptor: typeof catchPhraseDescriptor;
29
- declare const company_catchPhraseNoun: typeof catchPhraseNoun;
30
- declare const company_name: typeof name;
31
- declare namespace company {
32
- 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 };
33
- }
34
-
35
- export { buzzNoun as a, buzzAdjective as b, company as c, buzzPhrase as d, buzzVerb as e, catchPhrase as f, catchPhraseAdjective as g, catchPhraseDescriptor as h, catchPhraseNoun as i, name as n };
@@ -1,35 +0,0 @@
1
- import { ValueConfig } from './type.mjs';
2
-
3
- /** Company [buzzAdjective](https://fakerjs.dev/api/company.html#buzzAdjective) */
4
- declare const buzzAdjective: () => ValueConfig<string>;
5
- /** Company [buzzNoun](https://fakerjs.dev/api/company.html#buzzNoun) */
6
- declare const buzzNoun: () => ValueConfig<string>;
7
- /** Company [buzzPhrase](https://fakerjs.dev/api/company.html#buzzPhrase) */
8
- declare const buzzPhrase: () => ValueConfig<string>;
9
- /** Company [buzzVerb](https://fakerjs.dev/api/company.html#buzzVerb) */
10
- declare const buzzVerb: () => ValueConfig<string>;
11
- /** Company [catchPhrase](https://fakerjs.dev/api/company.html#catchPhrase) */
12
- declare const catchPhrase: () => ValueConfig<string>;
13
- /** Company [catchPhraseAdjective](https://fakerjs.dev/api/company.html#catchPhraseAdjective) */
14
- declare const catchPhraseAdjective: () => ValueConfig<string>;
15
- /** Company [catchPhraseDescriptor](https://fakerjs.dev/api/company.html#catchPhraseDescriptor) */
16
- declare const catchPhraseDescriptor: () => ValueConfig<string>;
17
- /** Company [catchPhraseNoun](https://fakerjs.dev/api/company.html#catchPhraseNoun) */
18
- declare const catchPhraseNoun: () => ValueConfig<string>;
19
- /** Company [name](https://fakerjs.dev/api/company.html#name) */
20
- declare const name: () => ValueConfig<string>;
21
-
22
- declare const company_buzzAdjective: typeof buzzAdjective;
23
- declare const company_buzzNoun: typeof buzzNoun;
24
- declare const company_buzzPhrase: typeof buzzPhrase;
25
- declare const company_buzzVerb: typeof buzzVerb;
26
- declare const company_catchPhrase: typeof catchPhrase;
27
- declare const company_catchPhraseAdjective: typeof catchPhraseAdjective;
28
- declare const company_catchPhraseDescriptor: typeof catchPhraseDescriptor;
29
- declare const company_catchPhraseNoun: typeof catchPhraseNoun;
30
- declare const company_name: typeof name;
31
- declare namespace company {
32
- 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 };
33
- }
34
-
35
- export { buzzNoun as a, buzzAdjective as b, company as c, buzzPhrase as d, buzzVerb as e, catchPhrase as f, catchPhraseAdjective as g, catchPhraseDescriptor as h, catchPhraseNoun as i, name as n };
@@ -1,7 +0,0 @@
1
- import { createArrayConfig, createBoundedSeriesConfig, createObjectConfig, createSelectionConfig, createTupleConfig, createValueConfig } from './create_config.js';
2
-
3
- declare namespace config {
4
- export { createArrayConfig as array, createBoundedSeriesConfig as boundedSeries, createObjectConfig as object, createSelectionConfig as select, createTupleConfig as tuple, createValueConfig as value };
5
- }
6
-
7
- export { config as c };