prorm API Reference
    Preparing search index...

    Interface MinioStoreOptions

    Connection options for MinioStore, mirroring Minio.Client construction.

    interface MinioStoreOptions {
        endPoint?: string;
        port?: number;
        useSSL?: boolean;
        accessKey?: string;
        secretKey?: string;
        client?: MinioClientLike;
    }
    Index
    endPoint?: string

    Server hostname or IP, e.g. 'localhost' or 's3.example.com'.

    port?: number

    TCP port the MinIO/S3 server listens on, e.g. 9000.

    useSSL?: boolean

    Whether to use TLS (https).

    accessKey?: string

    Access key (username) for the server.

    secretKey?: string

    Secret key (password) for the server.

    client?: MinioClientLike

    A pre-built Minio.Client (or compatible object). When provided, connect() uses it directly and does NOT require the driver — this is how tests inject a mock client, and how callers can supply a custom-configured client. When omitted, connect() builds a real Minio.Client from the options above.