22 lines
314 B
PHP
22 lines
314 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace KTXF\Resource\Range;
|
|
|
|
interface IRange {
|
|
|
|
/**
|
|
* Gets the type of this range
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function type(): RangeType;
|
|
|
|
}
|