20 lines
302 B
PHP
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
|
|
{
|
|
}
|