import type { AdaptorDataSource as Adaptor } from '..'; export interface AnalyticsDispatcherConfig { /** * Array of adapters that analytics events will be sent to */ adaptors: Adaptor[]; /** * * Disable tracking for users who opt-out. * * @default false */ disableTracking?: boolean; /** * Enable debugging mode. Logs when events are called and the ids of the adapters to which events * are dispatched. * * @default false */ debug?: boolean; }