@litemetrics/node 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +116 -0
- package/dist/index.cjs +670 -81
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +668 -80
- package/dist/index.js.map +1 -1
- package/package.json +13 -4
package/dist/index.d.cts
CHANGED
|
@@ -84,4 +84,6 @@ declare class MongoDBAdapter implements DBAdapter {
|
|
|
84
84
|
private toSite;
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
|
|
87
|
+
declare function isBot(ua: string): boolean;
|
|
88
|
+
|
|
89
|
+
export { ClickHouseAdapter, type Collector, MongoDBAdapter, createCollector, isBot };
|
package/dist/index.d.ts
CHANGED
|
@@ -84,4 +84,6 @@ declare class MongoDBAdapter implements DBAdapter {
|
|
|
84
84
|
private toSite;
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
|
|
87
|
+
declare function isBot(ua: string): boolean;
|
|
88
|
+
|
|
89
|
+
export { ClickHouseAdapter, type Collector, MongoDBAdapter, createCollector, isBot };
|