mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-03-22 01:55:56 -05:00
15 lines
288 B
PHP
15 lines
288 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* @license https://opensource.org/licenses/Apache-2.0 Apache-2.0
|
|
*/
|
|
|
|
namespace Wikimedia\CSS\Objects;
|
|
|
|
/**
|
|
* Exists because DeclarationOrAtRuleList needs to be able to contain both Declarations
|
|
* and AtRules.
|
|
*/
|
|
interface DeclarationOrAtRule extends CSSObject {
|
|
}
|