UNPKG

@synergycodes/axiom

Version:

A React library for creating node-based UIs and diagram-driven applications. Perfect for React Flow users, providing ready-to-use node templates and components that work seamlessly with React Flow's ecosystem.

5 lines (4 loc) 285 B
import { RefObject } from 'react'; type TransitionEventType = 'transitionstart' | 'transitionrun' | 'transitionend'; export declare function useTransitionEvent(ref: RefObject<HTMLElement | null>, type: TransitionEventType, propertyName: string, callback: () => void): void; export {};