interface RateLimitData {
    global: boolean;
    method:
        | "DELETE"
        | "GET"
        | "POST"
        | "PUT";
    path: string;
    timeToReset: number;
    url: string;
}

Properties

global: boolean
method:
    | "DELETE"
    | "GET"
    | "POST"
    | "PUT"
path: string
timeToReset: number
url: string