haste-server/src/types/rate-limits.ts

14 lines
192 B
TypeScript

export interface Normal {
totalRequests: number
every: number
}
export interface Categories {
normal: Normal
}
export interface RateLimits {
end?: boolean
categories: Categories
}