12 lines
204 B
PHP
12 lines
204 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Laravel\Prompts\Themes\Contracts;
|
||
|
|
|
||
|
|
interface Scrolling
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* The number of lines to reserve outside of the scrollable area.
|
||
|
|
*/
|
||
|
|
public function reservedLines(): int;
|
||
|
|
}
|