UNPKG

@cycle/dom

Version:

The standard DOM Driver for Cycle.js, based on Snabbdom

12 lines (11 loc) 436 B
import { PreventDefaultOpt } from './fromEvent'; import { MainDOMSource } from './MainDOMSource'; import { DocumentDOMSource } from './DocumentDOMSource'; import { BodyDOMSource } from './BodyDOMSource'; export interface EventsFnOptions { useCapture?: boolean; passive?: boolean; bubbles?: boolean; preventDefault?: PreventDefaultOpt; } export declare type DOMSource = MainDOMSource | DocumentDOMSource | BodyDOMSource;