halo - v1.0.0
    Preparing search index...

    Interface FileStorageInterface

    Represents the metadata of a file stored in the system.

    interface FileStorageInterface {
        filehash: string;
        filename: string;
        filesize: number;
        fileuri: string;
        inlineData: string;
        mimeType: string;
    }
    Index

    Properties

    filehash: string

    The SHA-256 hash of the file.

    filename: string

    The name of the file.

    filesize: number

    The size of the file in bytes.

    fileuri: string

    The URI where the file is stored.

    inlineData: string
    mimeType: string