@types/react-credit-cards
TypeScript icon, indicating that this package has built-in type declarations

0.8.4 • Public • Published

Installation

npm install --save @types/react-credit-cards

Summary

This package contains type definitions for react-credit-cards (https://github.com/amarofashion/react-credit-cards).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-credit-cards.

index.d.ts

import * as React from "react";

export interface CallbackArgument {
    issuer: string;
    maxLength: number;
}

export type Focused = "name" | "number" | "expiry" | "cvc";

export interface ReactCreditCardProps {
    acceptedCards?: readonly string[] | undefined;
    callback?: ((type: CallbackArgument, isValid: boolean) => void) | undefined;
    cvc: string | number;
    expiry: string | number;
    focused?: Focused | undefined;
    issuer?: string | undefined;
    locale?: { valid: string } | undefined;
    name: string;
    number: string | number;
    placeholders?: { name: string } | undefined;
    preview?: boolean | undefined;
}

declare class ReactCreditCard extends React.Component<
    ReactCreditCardProps,
    never
> {}

export default ReactCreditCard;

Additional Details

  • Last updated: Mon, 20 Nov 2023 23:36:24 GMT
  • Dependencies: @types/react

Credits

These definitions were written by Vytautas Strimaitis, Ole Frank, and zzanol.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/react-credit-cards

Weekly Downloads

16,588

Version

0.8.4

License

MIT

Unpacked Size

4.65 kB

Total Files

5

Last publish

Collaborators

  • types