/** * An object containing a link that opens the resource in a browser. * @export * @interface WebViewLink */ export interface WebViewLink { /** * The location (URL) of the resource the link points to. * @type {string} * @memberof WebViewLink */ 'href': string; }