Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/packages / ui / CardType / typings.d.ts
Size: Mime:
export interface PaymentCardIconAdapterProps {
    amazon?: boolean;
    google?: boolean;
    apple?: boolean;
    paypal?: boolean;
    payments?: boolean;
    americanexpress?: boolean;
    amex?: boolean;
    visa?: boolean;
    diners?: boolean;
    discover?: boolean;
    mastercard?: boolean;
    westernunion?: boolean;
    title?: string;
    cardType: 'visa' | 'master' | 'american-express' | 'western-union' | 'discover' | 'payments' | 'amazon' | 'apple' | 'amex' | 'google' | 'paypal' | '';
    /**
     * @deprecated use cardNumber
     */
    cardnumber?: string;
    cardNumber?: string;
    className?: string;
}