Skip to content

Commit eb9a3d7

Browse files
committed
Fixes typings
1 parent 9c768eb commit eb9a3d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/constants.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1341,9 +1341,9 @@ export type TelemetryEvents = {
13411341
action: 'select';
13421342
} & Partial<Record<`item.${string}`, string | number | boolean>>;
13431343
/** Sent when the user hides the launchpad indicator */
1344-
'launchpad/indicator/hidden': TelemetryEventData;
1344+
'launchpad/indicator/hidden': void;
13451345
/** Sent when the launchpad indicator loads (with data) for the first time ever for this device */
1346-
'launchpad/indicator/firstLoad': TelemetryEventData;
1346+
'launchpad/indicator/firstLoad': void;
13471347

13481348
/** Sent when a PR review was started in the inspect overview */
13491349
openReviewMode: {
@@ -1357,7 +1357,7 @@ export type TelemetryEvents = {
13571357
};
13581358

13591359
/** Sent when the "context" of the workspace changes (e.g. repo added, integration connected, etc) */
1360-
'providers/context': TelemetryEventData;
1360+
'providers/context': void;
13611361

13621362
/** Sent when we've loaded all the git providers and their repositories */
13631363
'providers/registrationComplete': {

0 commit comments

Comments
 (0)