gartajackhats1985's picture
Upload 411 files
583c1c7 verified
raw
history blame contribute delete
426 Bytes
type ComfyPopupProps = {
target: HTMLElement;
container?: HTMLElement;
classList?: string;
ignoreTarget?: boolean,
closeOnEscape?: boolean,
position?: "absolute" | "relative",
horizontal?: "left" | "right"
}
export declare class ComfyPopup extends EventTarget {
element: HTMLDivElement;
constructor(props: ComfyPopupProps, ...children: HTMLElement[]);
toggle(): void;
update(): void;
};