File size: 282 Bytes
bc20498 |
1 2 3 4 5 6 7 |
import { noop } from '../../helpers/index.js';
import type { InteractOutsideConfig } from './types.js';
export declare function useInteractOutside(node: HTMLElement, config: InteractOutsideConfig): {
update: (config: InteractOutsideConfig) => void;
destroy: typeof noop;
};
|