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 72bac75 commit c970712Copy full SHA for c970712
src/element.ts
@@ -7,7 +7,7 @@ export default class Element {
7
[name: string]: AttributeValueType | HTMLElement | undefined;
8
9
public get element(): HTMLElement {
10
- return this.privElement!
+ return this.privElement!;
11
}
12
13
constructor(
src/types.ts
@@ -1,4 +1,9 @@
1
-export type AttributeValueType = string | number | symbol | bigint | ((event: Event) => unknown);
+export type AttributeValueType =
2
+ | string
3
+ | number
4
+ | symbol
5
+ | bigint
6
+ | ((event: Event) => unknown);
export type AttributesType = {
[key: string]: AttributeValueType;
0 commit comments