@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
14 lines (13 loc) • 473 B
TypeScript
/** static class */
export declare class ClickOutEvent {
static readonly eventName = "clickOut";
private static _initializedElements;
static initFor(element: HTMLElement, options?: {
documents?: Document[];
ignoreElements?: HTMLElement[];
ignoreEventPathElementsSelector?: string;
ignoreElementSelector?: string;
}): void;
private static _onDocumentClick;
static deInitFor(element: HTMLElement): void;
}