ixfx
    Preparing search index...

    Type Alias EventSourceOptions

    type EventSourceOptions = {
        debugFiring?: boolean;
        debugLifecycle?: boolean;
        diff?: boolean;
        lazy?: Lazy;
    }
    Index

    Properties

    debugFiring?: boolean

    If true, log messages are emitted when the source event fires

    debugLifecycle?: boolean

    If true, log messages are emitted when event handlers are added/removed

    diff?: boolean

    If true, behaves like Source.object where event properties are compared and source only emits where there is a change.

    Default: false

    lazy?: Lazy