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.

22 lines (21 loc) 1.38 kB
import * as React from 'react'; import { IntlShape, Omit } from '../types'; export declare const Provider: React.ProviderExoticComponent<React.ProviderProps<IntlShape>>; export declare const Context: React.Context<IntlShape>; export interface Opts<IntlPropName extends string = 'intl', ForwardRef extends boolean = false> { intlPropName?: IntlPropName; forwardRef?: ForwardRef; enforceContext?: boolean; } export declare type WrappedComponentProps<IntlPropName extends string = 'intl'> = { [k in IntlPropName]: IntlShape; }; export declare type WithIntlProps<P> = Omit<P, keyof WrappedComponentProps> & { forwardedRef?: React.Ref<any>; }; export default function injectIntl<IntlPropName extends string, P extends WrappedComponentProps<IntlPropName> = WrappedComponentProps<any>>(WrappedComponent: React.ComponentType<P>, options?: Opts<IntlPropName, false>): React.FC<WithIntlProps<P>> & { WrappedComponent: typeof WrappedComponent; }; export default function injectIntl<IntlPropName extends string = 'intl', P extends WrappedComponentProps<IntlPropName> = WrappedComponentProps<any>, T extends React.ComponentType<P> = any>(WrappedComponent: React.ComponentType<P>, options?: Opts<IntlPropName, true>): React.ForwardRefExoticComponent<React.PropsWithoutRef<WithIntlProps<P>> & React.RefAttributes<T>> & { WrappedComponent: typeof WrappedComponent; };