File size: 593 Bytes
82ea528
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export declare enum EStatus {
    executing = "Executing",
    executed = "Executed",
    execution_error = "Execution error"
}
export declare const ComfyKeyMenuDisplayOption = "Comfy.UseNewMenu";
export declare enum MenuDisplayOptions {
    'Disabled' = "Disabled",
    'Top' = "Top",
    'Bottom' = "Bottom"
}
export declare abstract class ProgressBarUIBase {
    rootId: string;
    rootElement: HTMLElement | null | undefined;
    protected htmlClassMonitor: string;
    protected constructor(rootId: string, rootElement: HTMLElement | null | undefined);
    abstract createDOM(): void;
}