/**
 * Call a formatter
 *
 */
type Formattable = string | Promise<string> | HTMLElement | Promise<HTMLElement>;
export default Formattable;
