@studiometa/js-toolkit
Version:
A set of useful little bits of JavaScript to boost your project! 🚀
15 lines (14 loc) • 338 B
TypeScript
export declare const ONCE_CAPTURE_EVENT_OPTIONS: {
once: boolean;
capture: boolean;
};
export declare const PASSIVE_CAPTURE_EVENT_OPTIONS: {
passive: boolean;
capture: boolean;
};
export declare const PASSIVE_EVENT_OPTIONS: {
passive: boolean;
};
export declare const CAPTURE_EVENT_OPTIONS: {
capture: boolean;
};