uni-analytics-sdk
Version:
A universal SDK for analytics and logging.
15 lines (12 loc) • 589 B
text/typescript
// This file is the public entry point for the SDK.
// It exports the core functionalities, providers, and interfaces
// so they can be easily imported by consumers of this package.
// Core SDK Engine
export { UniversalSDK } from './core/UniversalSDK';
// Providers
// Export each provider that is ready for public use.
export * from './providers/GoogleAnalyticsProvider';
// Public Interfaces
// Exporting the interfaces allows developers to create their own custom providers
// or to have strong type-checking when interacting with the SDK.
export * from './interfaces';