smart-track
Version:
A TypeScript SDK for integrating with tracking services using the Beckn protocol. Provides adapters for package tracking with built-in error handling, retry logic, and type safety.
9 lines • 375 B
TypeScript
export declare class AdapterResponse<T = any> {
readonly status: number;
readonly data: T | null;
readonly headers: Record<string, string>;
readonly requestId?: string;
readonly message: string;
constructor(status: number, message: string, data: T | null, headers?: Record<string, string>, requestId?: string);
}
//# sourceMappingURL=response.d.ts.map