@comfyorg/comfyui-frontend-types 1.45.3 → 1.45.5
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/index.d.ts +3 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -988,7 +988,9 @@ export declare class ComfyApi extends EventTarget {
|
|
|
988
988
|
* Gets the current state of the queue
|
|
989
989
|
* @returns The currently running and queued items
|
|
990
990
|
*/
|
|
991
|
-
getQueue(
|
|
991
|
+
getQueue(options?: {
|
|
992
|
+
throwOnError?: boolean;
|
|
993
|
+
}): Promise<{
|
|
992
994
|
Running: JobListItem[];
|
|
993
995
|
Pending: JobListItem[];
|
|
994
996
|
}>;
|