@robert.tools/curl 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -13,3 +13,4 @@ export declare const getCurlData: (request: URI) => any;
13
13
  * @returns {string} 📤 The raw response from the curl command.
14
14
  */
15
15
  export declare const curl: (url: URI, options: CURL_OPTS) => string;
16
+ export type { CURL_ITEM, CURL_OPTS } from './index.d';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robert.tools/curl",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Provide an easy to use curl function",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",