fix: correct meta attributes

fixes https://github.com/sveltejs/language-tools/issues/1917
pull/8353/head
Simon H 2 years ago committed by GitHub
parent c6d6a73b9d
commit 11af850924
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -869,9 +869,9 @@ export interface HTMLMediaAttributes<T extends HTMLMediaElement> extends HTMLAtt
}
export interface HTMLMetaAttributes extends HTMLAttributes<HTMLMetaElement> {
charSet?: string | undefined | null;
charset?: string | undefined | null;
content?: string | undefined | null;
httpequiv?: string | undefined | null;
'http-equiv'?: string | undefined | null;
name?: string | undefined | null;
media?: string | undefined | null;
}

Loading…
Cancel
Save