UMD Web Components Library
    Preparing search index...

    Interface ComponentEvents

    Event handler types for component events

    interface ComponentEvents {
        callback?: (shadow?: ShadowRoot) => void;
        close?: (options?: { hasAnimation?: boolean }) => void;
        hide?: () => void;
        load?: () => void;
        loadAnimation?: () => void;
        open?: (options?: { hasAnimation?: boolean }) => void;
        resize?: () => void;
        setPosition?: (options?: { value?: null | number }) => void;
        show?: () => void;
        size?: () => void;
    }
    Index

    Properties

    callback?: (shadow?: ShadowRoot) => void
    close?: (options?: { hasAnimation?: boolean }) => void
    hide?: () => void
    load?: () => void
    loadAnimation?: () => void
    open?: (options?: { hasAnimation?: boolean }) => void
    resize?: () => void
    setPosition?: (options?: { value?: null | number }) => void
    show?: () => void
    size?: () => void