blocket.js 1.1.2 → 1.1.3
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.
- package/README.md +1 -5
- package/dist/index.d.ts +2 -1
- package/lib/index.ts +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -126,8 +126,4 @@ Retrieves a specific ad by its ID.
|
|
|
126
126
|
|
|
127
127
|
This project is licensed under the [MIT License](https://github.com/rutbergphilip/blocket.js/blob/main/LICENSE) – free for personal and commercial use.
|
|
128
128
|
|
|
129
|
-
If you find this project useful, crediting the author is greatly appreciated!
|
|
130
|
-
|
|
131
|
-
## Star History
|
|
132
|
-
|
|
133
|
-
[](https://star-history.com/#rutbergphilip/blocket.js&Date)
|
|
129
|
+
If you find this project useful, crediting the author and contributing to the project is greatly appreciated!
|
package/dist/index.d.ts
CHANGED
|
@@ -3,4 +3,5 @@ export default client;
|
|
|
3
3
|
import { configure } from './config';
|
|
4
4
|
export { configure };
|
|
5
5
|
import type { BlocketQueryConfig } from './types/config';
|
|
6
|
-
|
|
6
|
+
import type { BlocketAd } from './types';
|
|
7
|
+
export type { BlocketQueryConfig, BlocketAd };
|
package/lib/index.ts
CHANGED