waiit 4.0.0 → 4.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.
- package/README.md +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -134,7 +134,9 @@ waiit 3000 && echo "3 seconds passed"
|
|
|
134
134
|
| `app.js` | ESM module (`import wait from 'waiit'`) |
|
|
135
135
|
| `app.cjs` | CommonJS module (`require('waiit')`) |
|
|
136
136
|
| `app.global.js` | UMD for browsers (`<script>` tag → `window.wait`) |
|
|
137
|
-
| `app.d.ts` | TypeScript type definitions |
|
|
137
|
+
| `app.d.ts` | TypeScript type definitions (ESM) |
|
|
138
|
+
| `app.cjs.d.ts` | TypeScript type definitions (CommonJS) |
|
|
139
|
+
| `app.global.d.ts` | TypeScript type definitions (Global/UMD) |
|
|
138
140
|
| `app.cli.js` | CLI binary (`npx waiit 1000`) |
|
|
139
141
|
|
|
140
142
|
|