/** * A generic URL message. */ export interface UrlMessage { /** The title shown close to the URL. The title can be clickable in some cases. */ title: string; /** The url to show. */ url: string; }