tw5-typed 0.5.6 → 0.5.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tw5-typed",
3
- "version": "0.5.6",
3
+ "version": "0.5.7",
4
4
  "scripts": {
5
5
  "check": "tsc --noEmit && eslint src/**/*.ts",
6
6
  "docs": "docs-ts",
@@ -193,7 +193,7 @@ declare module 'tiddlywiki' {
193
193
  */
194
194
  each: <T, K = T extends unknown[] ? number : keyof T>(
195
195
  object: T,
196
- callback: (element: T[K], index: K, object: T) => undefined | false | undefined,
196
+ callback: (element: T[K], index: K, object: T) => undefined | false | void,
197
197
  ) => void;
198
198
 
199
199
  /**