Files

19 lines
566 B
TypeScript
Raw Permalink Normal View History

2025-08-27 14:05:33 +08:00
import { createInsightsClient } from "./_createInsightsClient";
import { getFunctionalInterface } from "./_getFunctionalInterface";
import { processQueue } from "./_processQueue";
import AlgoliaAnalytics from "./insights";
import { getRequesterForNode } from "./utils/getRequesterForNode";
import { LocalStorage } from "./utils/localStorage";
export {
createInsightsClient,
getRequesterForNode,
AlgoliaAnalytics,
LocalStorage,
getFunctionalInterface,
processQueue
};
export * from "./types";
export default createInsightsClient(getRequesterForNode());