gartajackhats1985's picture
Upload 411 files
583c1c7 verified
raw
history blame contribute delete
388 Bytes
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;
};