interface JSFunctionsModel { objectToURIVars: typeof objectToURIVars; correctDates: typeof correctDates; } declare var JSFunctions: JSFunctionsModel; /**@description This function can convert your objecs to URIVariables string */ declare function objectToURIVars(obj?: any): string; /**@description Pass any objects here and it will update all Date variables corrected with timeZoneOffsets. use full to correct api variables and sql variables. */ declare function correctDates(obj: any): any; export default JSFunctions;