Installation
npm install --save @types/react-currency-formatter
Summary
This package contains type definitions for react-currency-formatter (https://github.com/xdae/react-currency-formatter).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-currency-formatter.
index.d.ts
import * as React from "react";
interface CurrencyFormatterProps {
quantity: number;
currency?: string | undefined;
locale?: string | undefined;
pattern?: string | undefined;
decimal?: string | undefined;
group?: string | undefined;
symbol?: string | undefined;
}
declare const reactCurrencyFormatter: React.ComponentClass<CurrencyFormatterProps>;
export = reactCurrencyFormatter;
Additional Details
- Last updated: Tue, 07 Nov 2023 09:09:39 GMT
- Dependencies: @types/react
Credits
These definitions were written by Yury Pastushenko, and Evgeniy Vasiliev.