%PDF- %PDF-
Direktori : /home/q/g/b/qgbqkvz/www/wp-content/plugins/wp-scss/scssphp/src/Ast/Css/ |
Current File : /home/q/g/b/qgbqkvz/www/wp-content/plugins/wp-scss/scssphp/src/Ast/Css/CssImport.php |
<?php /** * SCSSPHP * * @copyright 2012-2020 Leaf Corcoran * * @license http://opensource.org/licenses/MIT MIT * * @link http://scssphp.github.io/scssphp */ namespace ScssPhp\ScssPhp\Ast\Css; /** * A plain CSS `@import`. * * @internal */ interface CssImport extends CssNode { /** * The URL being imported. * * This includes quotes. * * @return CssValue<string> */ public function getUrl(): CssValue; /** * The modifiers (such as media or supports queries) attached to this import. * * @return CssValue<string>|null */ public function getModifiers(): ?CssValue; }