# Installation > `npm install --save @types/react-katex` # Summary This package contains type definitions for react-katex (https://github.com/talyssonoc/react-katex). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-katex. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-katex/index.d.ts) ````ts // Type definitions for react-katex 3.0 // Project: https://github.com/talyssonoc/react-katex // Definitions by: Geoffrey Tang // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // Minimum TypeScript Version: 2.8 import * as React from 'react'; export type ErrorRenderer = (error: Error) => React.ReactNode; export interface MathComponentPropsWithMath { math: string; errorColor?: string; renderError?: ErrorRenderer; } export interface MathComponentPropsWithChildren { children: React.ReactNode; errorColor?: string; renderError?: ErrorRenderer; } export type MathComponentProps = MathComponentPropsWithMath | MathComponentPropsWithChildren; export function BlockMath(props: MathComponentProps): JSX.Element; export function InlineMath(props: MathComponentProps): JSX.Element; ```` ### Additional Details * Last updated: Wed, 28 Dec 2022 03:02:37 GMT * Dependencies: [@types/react](https://npmjs.com/package/@types/react) * Global values: none # Credits These definitions were written by [Geoffrey Tang](https://github.com/jeffswt).