Skip to content

Commit

Permalink
fix(types): deprecate charSet
Browse files Browse the repository at this point in the history
  • Loading branch information
wmertens committed May 29, 2024
1 parent 4404eff commit 4937b9f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/qwik/src/core/render/jsx/types/jsx-generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -644,10 +644,15 @@ type SpecialAttrs = {
referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
sizes?: string | undefined;
type?: string | undefined;
/** @deprecated Use `charset` instead */
charSet?: string | undefined;
charset?: string | undefined;
children?: undefined;
};
meta: {
/** @deprecated Use `charset` instead */
charSet?: 'utf-8' | undefined;
/** Qwik only supports utf-8 */
charset?: 'utf-8' | undefined;
children?: undefined;
};
Expand Down

0 comments on commit 4937b9f

Please sign in to comment.