Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@types/react-currency-format
Advanced tools
TypeScript definitions for react-currency-format
npm install --save @types/react-currency-format
This package contains type definitions for react-currency-format (https://github.com/mohitgupta8888/react-currency-format#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-currency-format.
import { Component, ComponentType, HTMLAttributes, InputHTMLAttributes, JSX } from "react";
declare namespace CurrencyFormat {
/**
* Available input type attributes which the component supports.
*/
type InputType = "text" | "tel";
/**
* A value object containing the formatted value, the original value and the float value.
* @see {@link https://github.com/mohitgupta8888/react-currency-format#values-object}
*/
interface Values {
formattedValue: string;
value: string;
floatValue: number;
}
// The component accepts all the props which can be given to a input or span based on displayType selected.
type DisplayTypeInput = InputHTMLAttributes<HTMLInputElement> & {
displayType?: "input";
customInput?: ComponentType<any>;
};
type DisplayTypeText = HTMLAttributes<HTMLSpanElement> & {
displayType?: "text";
customInput?: never;
};
/**
* Props accepted by the component.
* @see {@link https://github.com/mohitgupta8888/react-currency-format#props}
*/
type StrictProps =
& Partial<{
thousandSeparator: string | boolean;
thousandSpacing: "2" | "2s" | "3" | "4";
decimalSeparator: string;
decimalScale: number;
fixedDecimalScale: boolean;
allowNegative: boolean;
prefix: string;
suffix: string;
value: number | string | null;
isNumericString: boolean;
type: InputType;
format: string | ((unformatedInput: string) => string);
removeFormatting: (formattedValue: string) => string;
mask: string | string[];
onValueChange: (values: Values) => void;
isAllowed: (values: Values) => boolean;
renderText: (formattedValue: string) => JSX.Element;
}>
& (DisplayTypeText | DisplayTypeInput);
/**
* Props accepted by the component and any other prop of the customInput.
*/
type Props = StrictProps & {
[key: string]: unknown;
};
}
declare class CurrencyFormat extends Component<CurrencyFormat.Props> {}
export = CurrencyFormat;
These definitions were written by Guilherme Samuel.
FAQs
TypeScript definitions for react-currency-format
We found that @types/react-currency-format demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.