Files
RomhackPlaza/app/Types/FSTypes.php

20 lines
302 B
PHP
Raw Permalink Normal View History

2026-05-20 18:25:15 +02:00
<?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
{
}