. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\GedcomRecord; /** * Interface ModuleShareInterface - Add share link to the GedcomRecord menu. */ interface ModuleShareInterface extends ModuleInterface { /** * HTML to include in the share links page. * * @param GedcomRecord $record * * @return string */ public function share(GedcomRecord $record): string; }