Skip to content

Commit

Permalink
Add missing typings for ElementAttributes
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-go committed Dec 18, 2023
1 parent 757337e commit bffa174
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Raw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1059,13 +1059,20 @@ declare namespace Raw
/** */
export interface ElementAttribute
{
accesskey: string;
autocapitalize: boolean;
autofocus: boolean;
dir: string;
draggable: boolean;
contentEditable: boolean | string;
enterkeyhint: string;
name: string;
id: string;
class: string;
style: string;
contentEditable: boolean | string;
spellcheck: boolean;
tabIndex: number;
title: string;
data: Record<string, string | number | boolean>;
}

Expand Down

0 comments on commit bffa174

Please sign in to comment.