UNPKG

593 BPlain TextView Raw
1import {MemoryStream, Stream} from 'xstream';
2import {PreventDefaultOpt} from './fromEvent';
3import {MainDOMSource} from './MainDOMSource';
4import {DocumentDOMSource} from './DocumentDOMSource';
5import {BodyDOMSource} from './BodyDOMSource';
6
7export interface EventsFnOptions {
8 useCapture?: boolean;
9 passive?: boolean;
10 bubbles?: boolean;
11 preventDefault?: PreventDefaultOpt;
12}
13
14// There is no MockedDOMSource as its functions return any,
15// which would overshadow the other members, making this union pointless
16export type DOMSource = MainDOMSource | DocumentDOMSource | BodyDOMSource;