RecipesChapter 9: The Standard Library and External Type Definitions

Extending Modules

Recipe 9.5 from The TypeScript Cookbook

declare namespace JSX {
  interface IntrinsicElements {
    img: HTMLAttributes & {
      alt: string;
      src: string;
      loading?: "lazy" | "eager" | "auto";
    };
  }
}
Open in TypeScript Playground →