@yaasl/utils 0.10.0 → 0.10.2

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.
@@ -3,7 +3,7 @@ export declare class Thenable<T = undefined> implements PromiseLike<T> {
3
3
  private value?;
4
4
  constructor(value?: T | undefined);
5
5
  then<Result = T, Reject = never>(onfulfilled?: Executor<T, Result>, onrejected?: Executor<any, Reject>): PromiseLike<Result | Reject>;
6
- static isThenable(item: unknown): boolean;
6
+ static isThenable(item: unknown): item is Thenable<any>;
7
7
  static all(items: PromiseLike<any>[]): Promise<any[]> | Thenable<unknown[]>;
8
8
  }
9
9
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yaasl/utils",
3
- "version": "0.10.0",
3
+ "version": "0.10.2",
4
4
  "description": "Utilities for @yaasl packages",
5
5
  "author": "PrettyCoffee",
6
6
  "license": "MIT",