9 lines
112 B
PHP
9 lines
112 B
PHP
<?php
|
|
|
|
namespace NoccyLabs\Spinner\Style;
|
|
|
|
interface StyleInterface
|
|
{
|
|
public function getFrames(): array;
|
|
}
|