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.
null
undefined
1 parent e66004e commit 383c486Copy full SHA for 383c486
index.d.ts
@@ -12,7 +12,8 @@ interface DirectiveFields {
12
/**
13
* Directive attributes.
14
*/
15
- attributes?: Record<string, string> | undefined
+ // eslint-disable-next-line @typescript-eslint/ban-types
16
+ attributes?: Record<string, string | null | undefined> | null | undefined
17
}
18
19
0 commit comments