There was an error while loading. Please reload this page.
1 parent 9a406c4 commit 4f2b656Copy full SHA for 4f2b656
1 file changed
packages/web/src/types.ts
@@ -10,7 +10,12 @@ interface CustomEvent {
10
export type BeforeSendEvent = PageViewEvent | CustomEvent;
11
12
export type Mode = 'auto' | 'development' | 'production';
13
-export type AllowedPropertyValues = string | number | boolean | null;
+export type AllowedPropertyValues =
14
+ | string
15
+ | number
16
+ | boolean
17
+ | null
18
+ | undefined;
19
20
export type BeforeSend = (event: BeforeSendEvent) => BeforeSendEvent | null;
21
0 commit comments