format(stringParts: TemplateStringsArray,...strings: Stringable[],): FormattableString
Template literal that helps construct message entities for text formatting.
Use if you want to strip all of the indentation from the beginning of each line.
NOTE: for format with arrays use it with join helper -
format`${join(["test", "other"], (x) => format`${bold(x)}`, "\n")}`
...strings: Stringable[]