mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
15 lines
473 B
TypeScript
15 lines
473 B
TypeScript
import { createInsightsClient } from "./_createInsightsClient";
|
|
import { getFunctionalInterface } from "./_getFunctionalInterface";
|
|
import { processQueue } from "./_processQueue";
|
|
import AlgoliaAnalytics from "./insights";
|
|
import { getRequesterForNode } from "./utils/getRequesterForNode";
|
|
|
|
export {
|
|
getRequesterForNode,
|
|
AlgoliaAnalytics,
|
|
getFunctionalInterface,
|
|
processQueue
|
|
};
|
|
export * from "./types";
|
|
|
|
export default createInsightsClient(getRequesterForNode());
|