mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-14 19:26:42 +00:00
15 lines
268 B
PHP
15 lines
268 B
PHP
|
<?php
|
||
|
namespace MediaWiki\Skins\Vector\Components;
|
||
|
|
||
|
/**
|
||
|
* Component interface for managing Vector-modified components
|
||
|
*
|
||
|
* @internal
|
||
|
*/
|
||
|
interface VectorComponent {
|
||
|
/**
|
||
|
* @return array of Mustache compatible data
|
||
|
*/
|
||
|
public function getTemplateData(): array;
|
||
|
}
|