Skip to content

Commit 5b6aeb7

Browse files
committed
fix: type error
1 parent cf4bda4 commit 5b6aeb7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/types/src/analytics/utils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ export type Union2Obj<U extends string> = {
55
export type Obj2Tuple<O extends {}> = {} extends O
66
? []
77
: {
8+
// @ts-ignore
89
[key in keyof O]: [key, ...Obj2Tuple<O[key]>];
910
}[keyof O];

0 commit comments

Comments
 (0)