refactor: cleanup string literal variables handling
[e-mobility-charging-stations-simulator.git] / src / utils / index.ts
1 export { AsyncLock, AsyncLockType } from './AsyncLock.js'
2 export {
3 buildChargingStationAutomaticTransactionGeneratorConfiguration,
4 buildConnectorsStatus,
5 buildEvsesStatus,
6 OutputFormat
7 } from './ChargingStationConfigurationUtils.js'
8 export { Configuration } from './Configuration.js'
9 export { Constants } from './Constants.js'
10 export { ACElectricUtils, DCElectricUtils } from './ElectricUtils.js'
11 export {
12 handleFileException,
13 handleSendMessageError,
14 handleUncaughtException,
15 handleUnhandledRejection,
16 setDefaultErrorParams
17 } from './ErrorUtils.js'
18 export { watchJsonFile } from './FileUtils.js'
19 export { logger } from './Logger.js'
20 export {
21 buildAddedMessage,
22 buildDeletedMessage,
23 buildPerformanceStatisticsMessage,
24 buildStartedMessage,
25 buildStoppedMessage,
26 buildUpdatedMessage
27 } from './MessageChannelUtils.js'
28 export { max, min, nthPercentile, stdDeviation } from './StatisticUtils.js'
29 export {
30 clone,
31 convertToBoolean,
32 convertToDate,
33 convertToFloat,
34 convertToInt,
35 exponentialDelay,
36 extractTimeSeriesValues,
37 formatDurationMilliSeconds,
38 formatDurationSeconds,
39 generateUUID,
40 getRandomFloatFluctuatedRounded,
41 getRandomFloatRounded,
42 getWebSocketCloseEventStatusString,
43 isArraySorted,
44 isAsyncFunction,
45 isNotEmptyArray,
46 isNotEmptyString,
47 isValidDate,
48 JSONStringify,
49 logPrefix,
50 roundTo,
51 secureRandom,
52 sleep,
53 validateUUID
54 } from './Utils.js'