@solidjs/signals 0.6.1 → 0.6.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.
@@ -28,7 +28,7 @@ export declare class Queue implements IQueue {
28
28
  flush(): void;
29
29
  addChild(child: IQueue): any;
30
30
  removeChild(child: IQueue): any;
31
- notify(...args: any[]): any;
31
+ notify(...args: any[]): boolean;
32
32
  merge(queue: Queue): void;
33
33
  }
34
34
  export declare const globalQueue: Queue;
@@ -82,4 +82,5 @@ export declare function transition(fn: (resume: (fn: () => any | Promise<any>) =
82
82
  export declare function cloneGraph(node: Computation): Computation;
83
83
  export declare function getOGSource<T extends Computation>(input: T): T;
84
84
  export declare function getTransitionSource<T extends Computation>(input: T): T;
85
+ export declare function getQueue(node: Computation): IQueue;
85
86
  export declare function initialDispose(node: any): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidjs/signals",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "",
5
5
  "author": "Ryan Carniato",
6
6
  "license": "MIT",