php-spinner/src/Style/StyleInterface.php

17 lines
294 B
PHP

<?php
namespace NoccyLabs\Spinner\Style;
interface StyleInterface
{
/**
* Returns an array of frames used to render the spinner
*/
public function getFrames(): array;
/**
* Get the width of this spinner in characters
*/
public function getWidth(): int;
}