@dash0/sdk-web
Version:
Dash0's Web SDK to collect telemetry from end-users' web browsers
14 lines (13 loc) • 454 B
JavaScript
import { debug, INIT_MESSAGE } from "../utils";
import { init as initApi } from "../api/init";
export * from "../api/identify";
export * from "../api/debug";
export * from "../api/attributes";
export * from "../api/events";
export * from "../api/log-level";
export { terminateSession } from "../api/session";
export { reportError } from "../api/report-error";
export function init(opts) {
debug(`${INIT_MESSAGE} (via package)`);
initApi(opts);
}