@log-right/base > LogRightConfigBase
LogRightConfigBase type​
Specifications for the base level of configuration parameters log-right accepts
Signature:export declare type LogRightConfigBase<TLogEventConfig extends LogEventConfigBase = LogEventConfigBase, TUserConfig extends UserConfig = UserConfig> = TLogEventConfig & TUserConfig & {
logEventRegistry: TypedIndexable<TLogEventConfig>;
eventIdLength: number;
templateFieldStart: string;
templateFieldStop: string;
timestampFormat: string;
locale?: Locale;
};