mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 06:24:44 +02:00
16 lines
261 B
PHP
16 lines
261 B
PHP
<?php
|
|
|
|
namespace App\Extensions\Features;
|
|
|
|
use Filament\Actions\Action;
|
|
|
|
interface FeatureSchemaInterface
|
|
{
|
|
/** @return string[] */
|
|
public function getListeners(): array;
|
|
|
|
public function getId(): string;
|
|
|
|
public function getAction(): Action;
|
|
}
|