/** * @description Define supported log level identifiers. */ export const LOG_TYPES = ["log", "info", "warn", "error", "debug"] as const /** * @description Represent the union type of all supported log levels. */ export type LogType = (typeof LOG_TYPES)[number]