@ninetailed/experience.js-plugin-preview
Version:
Ninetailed SDK plugin for preview
18 lines (17 loc) • 438 B
TypeScript
export type WidgetContainerOptions = {
ui?: {
opener?: {
hide: boolean;
};
};
};
export declare class WidgetContainer {
private readonly options;
private static CONTAINER_CLASS;
private readonly container;
constructor(options: WidgetContainerOptions);
open(): void;
close(): void;
get element(): HTMLDivElement;
static isContainerAttached(): boolean;
}