Files
panel/vendor/laravel/prompts/src/Themes/Contracts/Scrolling.php

12 lines
204 B
PHP
Raw Normal View History

2025-08-04 16:33:07 +03:30
<?php
namespace Laravel\Prompts\Themes\Contracts;
interface Scrolling
{
/**
* The number of lines to reserve outside of the scrollable area.
*/
public function reservedLines(): int;
}