UNPKG

dood-stream-client

Version:

🚀 A feature-rich client for the DoodStream API with caching, logging, and error handling

15 lines (14 loc) • 467 B
import { DoodStreamApiError } from "./api-error"; /** * 🛑 Custom error class for rate limit errors */ export declare class DoodStreamRateLimitError extends DoodStreamApiError { /** * Create a new rate limit error * * @param message - Error message * @param response - Original response data * @param context - Additional context information */ constructor(message?: string, response?: any, context?: Record<string, any>); }