@genesislcap/foundation-utils 14.225.2-alpha-adaf8d7.0 → 14.225.3-alpha-05eb387.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -39,6 +39,14 @@
39
39
  "package": "./directives"
40
40
  }
41
41
  },
42
+ {
43
+ "kind": "js",
44
+ "name": "*",
45
+ "declaration": {
46
+ "name": "*",
47
+ "package": "./encoding"
48
+ }
49
+ },
42
50
  {
43
51
  "kind": "js",
44
52
  "name": "*",
@@ -139,16 +147,340 @@
139
147
  "kind": "js",
140
148
  "name": "*",
141
149
  "declaration": {
142
- "name": "*",
143
- "package": "./utils"
150
+ "name": "*",
151
+ "package": "./utils"
152
+ }
153
+ },
154
+ {
155
+ "kind": "js",
156
+ "name": "*",
157
+ "declaration": {
158
+ "name": "*",
159
+ "package": "./uuid"
160
+ }
161
+ },
162
+ {
163
+ "kind": "js",
164
+ "name": "*",
165
+ "declaration": {
166
+ "name": "*",
167
+ "package": "./window"
168
+ }
169
+ }
170
+ ]
171
+ },
172
+ {
173
+ "kind": "javascript-module",
174
+ "path": "src/data/inMemoryDatabase.ts",
175
+ "declarations": [
176
+ {
177
+ "kind": "class",
178
+ "description": "An in memory database of specific DatabaseRecord types.",
179
+ "name": "InMemoryDatabase",
180
+ "members": [
181
+ {
182
+ "kind": "field",
183
+ "name": "isWorking",
184
+ "type": {
185
+ "text": "boolean"
186
+ },
187
+ "privacy": "public",
188
+ "default": "false"
189
+ },
190
+ {
191
+ "kind": "field",
192
+ "name": "records",
193
+ "type": {
194
+ "text": "Record<string, T>"
195
+ },
196
+ "privacy": "private",
197
+ "default": "{}"
198
+ },
199
+ {
200
+ "kind": "field",
201
+ "name": "beforeUpdateListeners",
202
+ "privacy": "private"
203
+ },
204
+ {
205
+ "kind": "field",
206
+ "name": "afterUpdateListeners",
207
+ "privacy": "private"
208
+ },
209
+ {
210
+ "kind": "method",
211
+ "name": "create",
212
+ "privacy": "public",
213
+ "return": {
214
+ "type": {
215
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
216
+ }
217
+ },
218
+ "parameters": [
219
+ {
220
+ "name": "newValue",
221
+ "type": {
222
+ "text": "Omit<T, 'id'>"
223
+ }
224
+ }
225
+ ]
226
+ },
227
+ {
228
+ "kind": "method",
229
+ "name": "read",
230
+ "privacy": "public",
231
+ "return": {
232
+ "type": {
233
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
234
+ }
235
+ },
236
+ "parameters": [
237
+ {
238
+ "name": "id",
239
+ "type": {
240
+ "text": "string"
241
+ }
242
+ }
243
+ ]
244
+ },
245
+ {
246
+ "kind": "method",
247
+ "name": "update",
248
+ "privacy": "public",
249
+ "return": {
250
+ "type": {
251
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
252
+ }
253
+ },
254
+ "parameters": [
255
+ {
256
+ "name": "id",
257
+ "type": {
258
+ "text": "string"
259
+ }
260
+ },
261
+ {
262
+ "name": "newValue",
263
+ "type": {
264
+ "text": "Omit<Partial<T>, 'id'>"
265
+ }
266
+ }
267
+ ]
268
+ },
269
+ {
270
+ "kind": "method",
271
+ "name": "delete",
272
+ "privacy": "public",
273
+ "return": {
274
+ "type": {
275
+ "text": "Promise<DatabaseAccessResult.Delete>"
276
+ }
277
+ },
278
+ "parameters": [
279
+ {
280
+ "name": "id",
281
+ "type": {
282
+ "text": "string"
283
+ }
284
+ }
285
+ ]
286
+ },
287
+ {
288
+ "kind": "method",
289
+ "name": "visit",
290
+ "privacy": "public",
291
+ "return": {
292
+ "type": {
293
+ "text": "Promise<void>"
294
+ }
295
+ },
296
+ "parameters": [
297
+ {
298
+ "name": "visitor",
299
+ "type": {
300
+ "text": "(record: T) => void"
301
+ }
302
+ }
303
+ ]
304
+ },
305
+ {
306
+ "kind": "method",
307
+ "name": "onBeforeUpdate",
308
+ "privacy": "public",
309
+ "return": {
310
+ "type": {
311
+ "text": "() => void"
312
+ }
313
+ },
314
+ "parameters": [
315
+ {
316
+ "name": "listener",
317
+ "type": {
318
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
319
+ }
320
+ }
321
+ ]
322
+ },
323
+ {
324
+ "kind": "method",
325
+ "name": "onAfterUpdate",
326
+ "privacy": "public",
327
+ "return": {
328
+ "type": {
329
+ "text": "() => void"
330
+ }
331
+ },
332
+ "parameters": [
333
+ {
334
+ "name": "listener",
335
+ "type": {
336
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
337
+ }
338
+ }
339
+ ]
340
+ }
341
+ ]
342
+ }
343
+ ],
344
+ "exports": [
345
+ {
346
+ "kind": "js",
347
+ "name": "InMemoryDatabase",
348
+ "declaration": {
349
+ "name": "InMemoryDatabase",
350
+ "module": "src/data/inMemoryDatabase.ts"
351
+ }
352
+ }
353
+ ]
354
+ },
355
+ {
356
+ "kind": "javascript-module",
357
+ "path": "src/data/index.ts",
358
+ "declarations": [],
359
+ "exports": [
360
+ {
361
+ "kind": "js",
362
+ "name": "*",
363
+ "declaration": {
364
+ "name": "*",
365
+ "package": "./inMemoryDatabase"
366
+ }
367
+ }
368
+ ]
369
+ },
370
+ {
371
+ "kind": "javascript-module",
372
+ "path": "src/design-system/design-system.ts",
373
+ "declarations": [
374
+ {
375
+ "kind": "function",
376
+ "name": "assureDesignSystem",
377
+ "return": {
378
+ "type": {
379
+ "text": "DesignSystemModule"
380
+ }
381
+ },
382
+ "parameters": [
383
+ {
384
+ "name": "module",
385
+ "type": {
386
+ "text": "DesignSystemModule"
387
+ }
388
+ }
389
+ ],
390
+ "description": "assureDesignSystem.",
391
+ "privacy": "public"
392
+ }
393
+ ],
394
+ "exports": [
395
+ {
396
+ "kind": "js",
397
+ "name": "assureDesignSystem",
398
+ "declaration": {
399
+ "name": "assureDesignSystem",
400
+ "module": "src/design-system/design-system.ts"
401
+ }
402
+ }
403
+ ]
404
+ },
405
+ {
406
+ "kind": "javascript-module",
407
+ "path": "src/design-system/index.ts",
408
+ "declarations": [],
409
+ "exports": [
410
+ {
411
+ "kind": "js",
412
+ "name": "*",
413
+ "declaration": {
414
+ "name": "*",
415
+ "package": "./design-system"
416
+ }
417
+ }
418
+ ]
419
+ },
420
+ {
421
+ "kind": "javascript-module",
422
+ "path": "src/decorators/index.ts",
423
+ "declarations": [],
424
+ "exports": [
425
+ {
426
+ "kind": "js",
427
+ "name": "*",
428
+ "declaration": {
429
+ "name": "*",
430
+ "package": "./renderOnChange"
431
+ }
432
+ }
433
+ ]
434
+ },
435
+ {
436
+ "kind": "javascript-module",
437
+ "path": "src/decorators/renderOnChange.ts",
438
+ "declarations": [
439
+ {
440
+ "kind": "function",
441
+ "name": "renderOnChange",
442
+ "parameters": [
443
+ {
444
+ "name": "target",
445
+ "type": {
446
+ "text": "FASTElement & { render(): void }"
447
+ },
448
+ "description": "The target to define the property change handler on."
449
+ },
450
+ {
451
+ "name": "name",
452
+ "type": {
453
+ "text": "string"
454
+ },
455
+ "description": "The property name."
456
+ }
457
+ ],
458
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
459
+ "privacy": "public"
460
+ }
461
+ ],
462
+ "exports": [
463
+ {
464
+ "kind": "js",
465
+ "name": "renderOnChange",
466
+ "declaration": {
467
+ "name": "renderOnChange",
468
+ "module": "src/decorators/renderOnChange.ts"
144
469
  }
145
- },
470
+ }
471
+ ]
472
+ },
473
+ {
474
+ "kind": "javascript-module",
475
+ "path": "src/directives/index.ts",
476
+ "declarations": [],
477
+ "exports": [
146
478
  {
147
479
  "kind": "js",
148
480
  "name": "*",
149
481
  "declaration": {
150
482
  "name": "*",
151
- "package": "./uuid"
483
+ "package": "./sync"
152
484
  }
153
485
  },
154
486
  {
@@ -156,14 +488,14 @@
156
488
  "name": "*",
157
489
  "declaration": {
158
490
  "name": "*",
159
- "package": "./window"
491
+ "package": "./when-else"
160
492
  }
161
493
  }
162
494
  ]
163
495
  },
164
496
  {
165
497
  "kind": "javascript-module",
166
- "path": "src/directives/index.ts",
498
+ "path": "src/encoding/index.ts",
167
499
  "declarations": [],
168
500
  "exports": [
169
501
  {
@@ -171,15 +503,7 @@
171
503
  "name": "*",
172
504
  "declaration": {
173
505
  "name": "*",
174
- "package": "./sync"
175
- }
176
- },
177
- {
178
- "kind": "js",
179
- "name": "*",
180
- "declaration": {
181
- "name": "*",
182
- "package": "./when-else"
506
+ "package": "./base64"
183
507
  }
184
508
  }
185
509
  ]
@@ -818,262 +1142,43 @@
818
1142
  "kind": "field",
819
1143
  "name": "_index",
820
1144
  "type": {
821
- "text": "any"
822
- },
823
- "privacy": "private"
824
- },
825
- {
826
- "kind": "method",
827
- "name": "parse",
828
- "parameters": [
829
- {
830
- "name": "localeNumber",
831
- "type": {
832
- "text": "string"
833
- }
834
- }
835
- ]
836
- },
837
- {
838
- "kind": "method",
839
- "name": "hasSeparator",
840
- "return": {
841
- "type": {
842
- "text": "boolean"
843
- }
844
- },
845
- "parameters": [
846
- {
847
- "name": "localeNumber",
848
- "type": {
849
- "text": "string"
850
- }
851
- }
852
- ]
853
- },
854
- {
855
- "kind": "field",
856
- "name": "_group",
857
- "default": "new RegExp(`[${parts.find((d) => d.type === 'group').value}]`, 'g')"
858
- }
859
- ]
860
- }
861
- ],
862
- "exports": [
863
- {
864
- "kind": "js",
865
- "name": "NumberParser",
866
- "declaration": {
867
- "name": "NumberParser",
868
- "module": "src/formatters/localeNumberParser.ts"
869
- }
870
- }
871
- ]
872
- },
873
- {
874
- "kind": "javascript-module",
875
- "path": "src/formatters/number.ts",
876
- "declarations": [
877
- {
878
- "kind": "function",
879
- "name": "getNumberFormatter",
880
- "parameters": [
881
- {
882
- "name": "format",
883
- "type": {
884
- "text": "string"
885
- }
886
- },
887
- {
888
- "name": "locale",
889
- "optional": true,
890
- "type": {
891
- "text": "string | null"
892
- }
893
- }
894
- ],
895
- "privacy": "public"
896
- }
897
- ],
898
- "exports": [
899
- {
900
- "kind": "js",
901
- "name": "getNumberFormatter",
902
- "declaration": {
903
- "name": "getNumberFormatter",
904
- "module": "src/formatters/number.ts"
905
- }
906
- }
907
- ]
908
- },
909
- {
910
- "kind": "javascript-module",
911
- "path": "src/data/inMemoryDatabase.ts",
912
- "declarations": [
913
- {
914
- "kind": "class",
915
- "description": "An in memory database of specific DatabaseRecord types.",
916
- "name": "InMemoryDatabase",
917
- "members": [
918
- {
919
- "kind": "field",
920
- "name": "isWorking",
921
- "type": {
922
- "text": "boolean"
923
- },
924
- "privacy": "public",
925
- "default": "false"
926
- },
927
- {
928
- "kind": "field",
929
- "name": "records",
930
- "type": {
931
- "text": "Record<string, T>"
932
- },
933
- "privacy": "private",
934
- "default": "{}"
935
- },
936
- {
937
- "kind": "field",
938
- "name": "beforeUpdateListeners",
939
- "privacy": "private"
940
- },
941
- {
942
- "kind": "field",
943
- "name": "afterUpdateListeners",
944
- "privacy": "private"
945
- },
946
- {
947
- "kind": "method",
948
- "name": "create",
949
- "privacy": "public",
950
- "return": {
951
- "type": {
952
- "text": "Promise<DatabaseAccessResult.Create<T>>"
953
- }
954
- },
955
- "parameters": [
956
- {
957
- "name": "newValue",
958
- "type": {
959
- "text": "Omit<T, 'id'>"
960
- }
961
- }
962
- ]
963
- },
964
- {
965
- "kind": "method",
966
- "name": "read",
967
- "privacy": "public",
968
- "return": {
969
- "type": {
970
- "text": "Promise<DatabaseAccessResult.Read<T>>"
971
- }
972
- },
973
- "parameters": [
974
- {
975
- "name": "id",
976
- "type": {
977
- "text": "string"
978
- }
979
- }
980
- ]
981
- },
982
- {
983
- "kind": "method",
984
- "name": "update",
985
- "privacy": "public",
986
- "return": {
987
- "type": {
988
- "text": "Promise<DatabaseAccessResult.Update<T>>"
989
- }
990
- },
991
- "parameters": [
992
- {
993
- "name": "id",
994
- "type": {
995
- "text": "string"
996
- }
997
- },
998
- {
999
- "name": "newValue",
1000
- "type": {
1001
- "text": "Omit<Partial<T>, 'id'>"
1002
- }
1003
- }
1004
- ]
1005
- },
1006
- {
1007
- "kind": "method",
1008
- "name": "delete",
1009
- "privacy": "public",
1010
- "return": {
1011
- "type": {
1012
- "text": "Promise<DatabaseAccessResult.Delete>"
1013
- }
1014
- },
1015
- "parameters": [
1016
- {
1017
- "name": "id",
1018
- "type": {
1019
- "text": "string"
1020
- }
1021
- }
1022
- ]
1023
- },
1024
- {
1025
- "kind": "method",
1026
- "name": "visit",
1027
- "privacy": "public",
1028
- "return": {
1029
- "type": {
1030
- "text": "Promise<void>"
1031
- }
1032
- },
1033
- "parameters": [
1034
- {
1035
- "name": "visitor",
1036
- "type": {
1037
- "text": "(record: T) => void"
1038
- }
1039
- }
1040
- ]
1041
- },
1042
- {
1043
- "kind": "method",
1044
- "name": "onBeforeUpdate",
1045
- "privacy": "public",
1046
- "return": {
1047
- "type": {
1048
- "text": "() => void"
1049
- }
1145
+ "text": "any"
1050
1146
  },
1147
+ "privacy": "private"
1148
+ },
1149
+ {
1150
+ "kind": "method",
1151
+ "name": "parse",
1051
1152
  "parameters": [
1052
1153
  {
1053
- "name": "listener",
1154
+ "name": "localeNumber",
1054
1155
  "type": {
1055
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
1156
+ "text": "string"
1056
1157
  }
1057
1158
  }
1058
1159
  ]
1059
1160
  },
1060
1161
  {
1061
1162
  "kind": "method",
1062
- "name": "onAfterUpdate",
1063
- "privacy": "public",
1163
+ "name": "hasSeparator",
1064
1164
  "return": {
1065
1165
  "type": {
1066
- "text": "() => void"
1166
+ "text": "boolean"
1067
1167
  }
1068
1168
  },
1069
1169
  "parameters": [
1070
1170
  {
1071
- "name": "listener",
1171
+ "name": "localeNumber",
1072
1172
  "type": {
1073
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
1173
+ "text": "string"
1074
1174
  }
1075
1175
  }
1076
1176
  ]
1177
+ },
1178
+ {
1179
+ "kind": "field",
1180
+ "name": "_group",
1181
+ "default": "new RegExp(`[${parts.find((d) => d.type === 'group').value}]`, 'g')"
1077
1182
  }
1078
1183
  ]
1079
1184
  }
@@ -1081,128 +1186,46 @@
1081
1186
  "exports": [
1082
1187
  {
1083
1188
  "kind": "js",
1084
- "name": "InMemoryDatabase",
1085
- "declaration": {
1086
- "name": "InMemoryDatabase",
1087
- "module": "src/data/inMemoryDatabase.ts"
1088
- }
1089
- }
1090
- ]
1091
- },
1092
- {
1093
- "kind": "javascript-module",
1094
- "path": "src/data/index.ts",
1095
- "declarations": [],
1096
- "exports": [
1097
- {
1098
- "kind": "js",
1099
- "name": "*",
1100
- "declaration": {
1101
- "name": "*",
1102
- "package": "./inMemoryDatabase"
1103
- }
1104
- }
1105
- ]
1106
- },
1107
- {
1108
- "kind": "javascript-module",
1109
- "path": "src/decorators/index.ts",
1110
- "declarations": [],
1111
- "exports": [
1112
- {
1113
- "kind": "js",
1114
- "name": "*",
1189
+ "name": "NumberParser",
1115
1190
  "declaration": {
1116
- "name": "*",
1117
- "package": "./renderOnChange"
1191
+ "name": "NumberParser",
1192
+ "module": "src/formatters/localeNumberParser.ts"
1118
1193
  }
1119
1194
  }
1120
1195
  ]
1121
1196
  },
1122
1197
  {
1123
1198
  "kind": "javascript-module",
1124
- "path": "src/decorators/renderOnChange.ts",
1199
+ "path": "src/formatters/number.ts",
1125
1200
  "declarations": [
1126
1201
  {
1127
1202
  "kind": "function",
1128
- "name": "renderOnChange",
1203
+ "name": "getNumberFormatter",
1129
1204
  "parameters": [
1130
1205
  {
1131
- "name": "target",
1132
- "type": {
1133
- "text": "FASTElement & { render(): void }"
1134
- },
1135
- "description": "The target to define the property change handler on."
1136
- },
1137
- {
1138
- "name": "name",
1206
+ "name": "format",
1139
1207
  "type": {
1140
1208
  "text": "string"
1141
- },
1142
- "description": "The property name."
1143
- }
1144
- ],
1145
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
1146
- "privacy": "public"
1147
- }
1148
- ],
1149
- "exports": [
1150
- {
1151
- "kind": "js",
1152
- "name": "renderOnChange",
1153
- "declaration": {
1154
- "name": "renderOnChange",
1155
- "module": "src/decorators/renderOnChange.ts"
1156
- }
1157
- }
1158
- ]
1159
- },
1160
- {
1161
- "kind": "javascript-module",
1162
- "path": "src/design-system/design-system.ts",
1163
- "declarations": [
1164
- {
1165
- "kind": "function",
1166
- "name": "assureDesignSystem",
1167
- "return": {
1168
- "type": {
1169
- "text": "DesignSystemModule"
1170
- }
1171
- },
1172
- "parameters": [
1209
+ }
1210
+ },
1173
1211
  {
1174
- "name": "module",
1212
+ "name": "locale",
1213
+ "optional": true,
1175
1214
  "type": {
1176
- "text": "DesignSystemModule"
1215
+ "text": "string | null"
1177
1216
  }
1178
1217
  }
1179
1218
  ],
1180
- "description": "assureDesignSystem.",
1181
1219
  "privacy": "public"
1182
1220
  }
1183
1221
  ],
1184
1222
  "exports": [
1185
1223
  {
1186
1224
  "kind": "js",
1187
- "name": "assureDesignSystem",
1188
- "declaration": {
1189
- "name": "assureDesignSystem",
1190
- "module": "src/design-system/design-system.ts"
1191
- }
1192
- }
1193
- ]
1194
- },
1195
- {
1196
- "kind": "javascript-module",
1197
- "path": "src/design-system/index.ts",
1198
- "declarations": [],
1199
- "exports": [
1200
- {
1201
- "kind": "js",
1202
- "name": "*",
1225
+ "name": "getNumberFormatter",
1203
1226
  "declaration": {
1204
- "name": "*",
1205
- "package": "./design-system"
1227
+ "name": "getNumberFormatter",
1228
+ "module": "src/formatters/number.ts"
1206
1229
  }
1207
1230
  }
1208
1231
  ]
@@ -2364,6 +2387,160 @@
2364
2387
  }
2365
2388
  ]
2366
2389
  },
2390
+ {
2391
+ "kind": "javascript-module",
2392
+ "path": "src/encoding/base64/decode.ts",
2393
+ "declarations": [
2394
+ {
2395
+ "kind": "function",
2396
+ "name": "decodeFromBase64",
2397
+ "return": {
2398
+ "type": {
2399
+ "text": ""
2400
+ }
2401
+ },
2402
+ "parameters": [
2403
+ {
2404
+ "name": "base64Value",
2405
+ "type": {
2406
+ "text": "string"
2407
+ }
2408
+ },
2409
+ {
2410
+ "description": "The value to decode from base64.",
2411
+ "name": "value"
2412
+ }
2413
+ ],
2414
+ "description": "Decodes a value from base64.",
2415
+ "privacy": "public"
2416
+ },
2417
+ {
2418
+ "kind": "function",
2419
+ "name": "decodeFromBase64WithPrefix",
2420
+ "return": {
2421
+ "type": {
2422
+ "text": ""
2423
+ }
2424
+ },
2425
+ "parameters": [
2426
+ {
2427
+ "name": "value",
2428
+ "type": {
2429
+ "text": "string"
2430
+ },
2431
+ "description": "The value to decode from base64."
2432
+ }
2433
+ ],
2434
+ "description": "Decodes a value from base64 with a prefix.",
2435
+ "privacy": "public"
2436
+ }
2437
+ ],
2438
+ "exports": [
2439
+ {
2440
+ "kind": "js",
2441
+ "name": "decodeFromBase64",
2442
+ "declaration": {
2443
+ "name": "decodeFromBase64",
2444
+ "module": "src/encoding/base64/decode.ts"
2445
+ }
2446
+ },
2447
+ {
2448
+ "kind": "js",
2449
+ "name": "decodeFromBase64WithPrefix",
2450
+ "declaration": {
2451
+ "name": "decodeFromBase64WithPrefix",
2452
+ "module": "src/encoding/base64/decode.ts"
2453
+ }
2454
+ }
2455
+ ]
2456
+ },
2457
+ {
2458
+ "kind": "javascript-module",
2459
+ "path": "src/encoding/base64/encode.ts",
2460
+ "declarations": [
2461
+ {
2462
+ "kind": "function",
2463
+ "name": "encodeToBase64",
2464
+ "return": {
2465
+ "type": {
2466
+ "text": ""
2467
+ }
2468
+ },
2469
+ "parameters": [
2470
+ {
2471
+ "name": "value",
2472
+ "type": {
2473
+ "text": "string | ArrayBuffer"
2474
+ },
2475
+ "description": "The value to encode to base64."
2476
+ }
2477
+ ],
2478
+ "description": "Encodes the given value to base64.",
2479
+ "privacy": "public"
2480
+ },
2481
+ {
2482
+ "kind": "function",
2483
+ "name": "encodeToBase64WithPrefix",
2484
+ "return": {
2485
+ "type": {
2486
+ "text": ""
2487
+ }
2488
+ },
2489
+ "parameters": [
2490
+ {
2491
+ "name": "value",
2492
+ "type": {
2493
+ "text": "string | ArrayBuffer"
2494
+ },
2495
+ "description": "The value to encode to base64."
2496
+ }
2497
+ ],
2498
+ "description": "Encodes the given value with a prefix to base64.",
2499
+ "privacy": "public"
2500
+ }
2501
+ ],
2502
+ "exports": [
2503
+ {
2504
+ "kind": "js",
2505
+ "name": "encodeToBase64",
2506
+ "declaration": {
2507
+ "name": "encodeToBase64",
2508
+ "module": "src/encoding/base64/encode.ts"
2509
+ }
2510
+ },
2511
+ {
2512
+ "kind": "js",
2513
+ "name": "encodeToBase64WithPrefix",
2514
+ "declaration": {
2515
+ "name": "encodeToBase64WithPrefix",
2516
+ "module": "src/encoding/base64/encode.ts"
2517
+ }
2518
+ }
2519
+ ]
2520
+ },
2521
+ {
2522
+ "kind": "javascript-module",
2523
+ "path": "src/encoding/base64/index.ts",
2524
+ "declarations": [],
2525
+ "exports": [
2526
+ {
2527
+ "kind": "js",
2528
+ "name": "*",
2529
+ "declaration": {
2530
+ "name": "*",
2531
+ "package": "./decode"
2532
+ }
2533
+ },
2534
+ {
2535
+ "kind": "js",
2536
+ "name": "*",
2537
+ "declaration": {
2538
+ "name": "*",
2539
+ "package": "./encode"
2540
+ }
2541
+ }
2542
+ ]
2543
+ },
2367
2544
  {
2368
2545
  "kind": "javascript-module",
2369
2546
  "path": "src/mappers/dto/index.ts",