Skip to content

Commit 0361291

Browse files
authored
fix: enable boolean values for the event data (#46)
1 parent 07334d2 commit 0361291

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aw-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export class FetchError extends Error {
66
}
77
}
88

9-
type EventData = { [k: string]: string | number };
9+
type EventData = { [k: string]: string | number | boolean };
1010

1111
type JSONPrimitive = string | number | boolean | null;
1212
type JSONValue = JSONPrimitive | JSONObject | JSONArray;

0 commit comments

Comments
 (0)