UNPKG

jsworkerutils

Version:

Helper class that improves the the loading processes, an implementation of multithreaded JS # Development Guide ## About - This library is meant to be a node packaged module that optimize concurrent api requests and simplify as much as possible , the li

15 lines (13 loc) 378 B
/** * Global type defination all type definition must be made here */ // Generic types for objects export interface KeyValuePair { [key: string]: any; } // Types for http setings usually headers and other request settings are set here export interface HttpSetting { [Key: string]: string; type: string; // Might be GET, POST , PUT, PATCH, DELETE credentials?: any; }