-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathindex.ts
More file actions
38 lines (38 loc) · 856 Bytes
/
index.ts
File metadata and controls
38 lines (38 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Re-export everything for clean imports
export { client, TRACKED_PACKAGES } from "./client"
export {
createTimer,
Events,
flushSessionSummary,
incrementCodeLensClicked,
incrementRouteCopied,
incrementRouteNavigated,
sanitizeError,
trackActivation,
trackActivationFailed,
trackCloudAppOpened,
trackCloudDashboardOpened,
trackCloudLogsOpened,
trackCloudProjectLinked,
trackCloudProjectUnlinked,
trackCloudSignIn,
trackCloudSignOut,
trackCodeLensProvided,
trackDeactivation,
trackEntrypointDetected,
trackSearchExecuted,
trackTreeViewVisible,
} from "./events"
export type {
ActivationEventProps,
ClientInfo,
EntrypointDetectedEventProps,
TelemetryConfig,
} from "./types"
export {
getClientInfo,
getInstalledVersions,
getOrCreateUserId,
initVSCodeTelemetry,
isTelemetryEnabled,
} from "./vscode"