@squidcloud/backend
    Preparing search index...

    Interface SquidFile

    An interface representing a file in some Squid operations.

    interface SquidFile {
        __isSquidFile__: true;
        data: Uint8Array;
        encoding?: string;
        fieldName: string;
        mimetype: string;
        originalName: string;
        size: number;
    }
    Index

    Properties

    __isSquidFile__: true

    An indicator that this is a Squid file.

    data: Uint8Array

    The binary data of the file.

    encoding?: string

    The encoding of the file, if specified.

    fieldName: string

    The name of the form field containing the file.

    mimetype: string

    The MIME type of the uploaded file.

    originalName: string

    The original filename as provided by the uploader.

    size: number

    The size of the file in bytes.