UNPKG

react-intl

Version:

Internationalize React apps. This library provides React components and an API to format dates, numbers, and strings, including pluralization and handling translations.

6 lines (5 loc) 227 B
import * as React from "react"; import { type IntlShape } from "../types.js"; declare const IntlContext: React.Context<IntlShape>; declare const Provider: React.Provider<IntlShape>; export { Provider, IntlContext as Context };