UNPKG

khatavani-client

Version:

The Backend-Api-Integration package simplifies interaction with the backend API by providing a set of CRUD methods for common endpoints. It abstracts away the complexity of making HTTP requests and handling responses, allowing developers to focus on appli

15 lines (11 loc) 313 B
export type anyKeyAndValue = { [key: string | number]: any }; export type ImageMetaDataType = { 'Content-Type': string, tag: string, public?:boolean, accountID?: string | number | null } export type FileStoreElement = { ImageMetaData: ImageMetaDataType ImageData: any, }