13 lines
343 B
TypeScript
13 lines
343 B
TypeScript
export * from "./publishers"
|
|
export * as processors from "./processors"
|
|
export * as analytics from "./analytics"
|
|
export * as identification from "./identification"
|
|
export * as backfillCache from "./backfill"
|
|
|
|
import { processors } from "./processors"
|
|
|
|
export const shutdown = () => {
|
|
processors.shutdown()
|
|
console.log("Events shutdown")
|
|
}
|