ts-mailcow-api
    Preparing search index...

    Interface BaseResponse

    Interface for a general Mailcow API response.

    This is used when the API call doesn't return any objects, i.e. POST requests.

    interface BaseResponse {
        log?: (string | Record<string, unknown>)[];
        msg: string | string[];
        type: "error" | "danger" | "succes";
    }
    Index

    Properties

    Properties

    log?: (string | Record<string, unknown>)[]
    msg: string | string[]
    type: "error" | "danger" | "succes"