File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -1100,7 +1100,33 @@ export interface HTMLLiAttributes extends HTMLAttributes<HTMLLIElement> {
1100
1100
}
1101
1101
1102
1102
export interface HTMLLinkAttributes extends HTMLAttributes < HTMLLinkElement > {
1103
- as ?: string | undefined | null ;
1103
+ as ?:
1104
+ | 'fetch'
1105
+ | 'audio'
1106
+ | 'audioworklet'
1107
+ | 'document'
1108
+ | 'embed'
1109
+ | 'font'
1110
+ | 'frame'
1111
+ | 'iframe'
1112
+ | 'image'
1113
+ | 'json'
1114
+ | 'manifest'
1115
+ | 'object'
1116
+ | 'paintworklet'
1117
+ | 'report'
1118
+ | 'script'
1119
+ | 'serviceworker'
1120
+ | 'sharedworker'
1121
+ | 'style'
1122
+ | 'track'
1123
+ | 'video'
1124
+ | 'webidentity'
1125
+ | 'worker'
1126
+ | 'xslt'
1127
+ | ''
1128
+ | undefined
1129
+ | null ;
1104
1130
crossorigin ?: 'anonymous' | 'use-credentials' | '' | undefined | null ;
1105
1131
href ?: string | undefined | null ;
1106
1132
hreflang ?: string | undefined | null ;
You can’t perform that action at this time.
0 commit comments