Files
RomhackPlaza/app/Types/FSTypes.php
2026-05-20 18:25:15 +02:00

20 lines
302 B
PHP

<?php
namespace App\Types;
/**
* @phpstan-type FSFileData array{
* name:string,
* totalChunks:int,
* rawFile?:mixed, // Must be used only in JS.
* progressValue:int,
* currentChunk:int,
* done:bool,
* error:mixed,
* uuid:string
* }
*/
interface FSTypes
{
}