declare global { interface String { format(options: { [find: string]: string }): string; } } /* Useful little function to format strings for us */ String.prototype.format = function (options: { [find: string]: string }) { return this.replace(/{([^{}]+)}/g, (match: string, name: string) => { if (options[name] !== undefined) { return options[name]; } return match; }); }; /* Lots of strings! These are strings used in HTML or are shown to end users in embeds. */ export const Strings = { BASE_HTML: `
{headers}{body}`, ERROR_HTML: `${RELEASE_NAME}