UNPKG

imagekit

Version:

Offical NodeJS SDK for ImageKit.io integration

11 lines (10 loc) 287 B
interface ResponseMetadata { statusCode: number; headers: Record<string, string | number | boolean>; } declare type IKResponse<T> = T extends Error ? T & { $ResponseMetadata?: ResponseMetadata; } : T & { $ResponseMetadata: ResponseMetadata; }; export default IKResponse;