halo - v1.0.0
    Preparing search index...

    Interface FileInterface

    Represents a file with its data, name, and path.

    interface FileInterface {
        filedata: Buffer;
        filename: string;
        filepath: string;
    }
    Index

    Properties

    filedata: Buffer

    The binary data of the file.

    filename: string

    The name of the file.

    filepath: string

    The path where the file is stored.