* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\Module\PsxDesign\Compiler; if (!defined('_PS_VERSION_')) { exit; } use PrestaShop\Module\PsxDesign\Vendor\ScssPhp\ScssPhp\CompilationResult; interface ThemeStylesheetCompilerInterface { /** * @return CompilationResult */ public function compile(): CompilationResult; /** * @param CompilationResult $result * * @return void */ public function replaceCompiledThemeStylesheet(CompilationResult $result): void; }