. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; /** * Interface ModuleConfigInterface - Classes and libraries for module system */ interface ModuleConfigInterface extends ModuleInterface { /** * The URL to a page where the user can modify the configuration of this module. * * @return string */ public function getConfigLink(): string; }