import { LogChannel } from "@mongez/logger"; type EnvironmentConfigurations = { /** * List of logging channels */ channels: LogChannel[]; /** * Enable logging * * @default true */ enabled?: boolean; }; export type LogConfigurations = { /** * Channels list * It will be used in all environments */ channels?: LogChannel[]; /** * Enable logging */ enabled?: boolean; /** * Development environment configurations * This will override the default configurations */ development?: EnvironmentConfigurations; /** * Production environment configurations */ production?: EnvironmentConfigurations; }; export {}; //# sourceMappingURL=types.d.ts.map