interface Options { /** * General style of the badge. */ mode?: string; /** * The text inside the left section. */ leftText?: string; /** * The text inside the right section. */ rightText?: string; /** * The font color of the text inside the left section. */ leftTextColor?: string; /** * The font color of the text inside the right section. */ rightTextColor?: string; /** * The background color of the left section. */ leftBgColor?: string; /** * The background color of the right section. */ rightBgColor?: string; } /** * Creates a badge with console.log() */ export function log(options?: Options): void; /** * Creates a badge with console.warn() */ export function warn(options?: Options): void; /** * Creates a badge with console.error() */ export function error(options?: Options): void; /** * Creates a badge with console.info() */ export function info(options?: Options): void;