/** * Configuration options for the implode & explode functions. */ export type Config = { /** * Whether the code should display extra messages on the console or not * @default false */ verbose?: boolean; }; export type Stats = { chunkCounter: number; };