@joint/react
    Preparing search index...

    Type Alias PaperEventHandler<T>

    PaperEventHandler: NonNullable<PaperEventHandlers[T]>

    The handler signature for a single paper event, looked up by its camelCase name. For example PaperEventHandler<'onCellPointerDown'> resolves to (params: PointerCellEventParams) => void. Handy for typing a standalone handler before adding it to a PaperEventMap.

    Type Parameters

    • T extends keyof PaperEventHandlers

      The event key to look up (a camelCase on* key of the paper's React event handlers, see PaperEventMap).