We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a61aef0 commit 1ad2bdaCopy full SHA for 1ad2bda
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "simple-tsx",
3
- "version": "1.2.1",
+ "version": "1.2.2",
4
"description": "A simple way to write tsx files. No babel required!",
5
"main": "dist/index.js",
6
"type": "commonjs",
src/types.ts
@@ -1,4 +1,4 @@
-export type AttributeValueType = string | ((event: Event) => unknown);
+export type AttributeValueType = string | number | symbol | bigint | ((event: Event) => unknown);
export type AttributesType = {
[key: string]: AttributeValueType;
0 commit comments