Spaces:
Configuration error
Configuration error
File size: 378 Bytes
d051564 |
1 2 3 4 5 6 7 8 9 10 11 |
import type {ComfyButton} from "scripts/ui/components/button.js";
export declare class ComfyButtonGroup {
element: HTMLElement;
constructor(...buttons: Array<ComfyButton|HTMLDivElement>);
insert(button: ComfyButton, index: number): void;
append(button: ComfyButton): void;
remove(indexOrButton: ComfyButton|number): ComfyButton|HTMLElement|void;
update(): void;
};
|