Skip to content
Type

SourceEvents

The events emitted by a Source, with each key being an event name and its value being the event data.

ts
type SourceEvents = {
	read: {
		start: number;
		end: number;
	};
};

Properties

read

ts
read: { start: number; end: number; };

Emitted each time data is retrieved from the source.

Released under the Mozilla Public License 2.0.