@shopana/ga
Version:
Type-safe Google Analytics 4 (GA4) tracking library for React and Next.js with ecommerce support, event batching, and SSR compatibility
9 lines • 398 B
TypeScript
import { type GA4Config, type EventPayload } from '../types/common';
import { type GAPlatformAdapter } from '../types/platform';
export declare class ServerNoopAdapter implements GAPlatformAdapter {
load(_config: GA4Config): Promise<void>;
isReady(): boolean;
send(_payload: EventPayload): Promise<void>;
destroy(_config: GA4Config): void;
}
//# sourceMappingURL=serverNoop.d.ts.map