File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
packages/nativescript-stripe Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ import {
48
48
IPaymentMethodCardWalletSamsungPay
49
49
} from './common' ;
50
50
51
- export { init } from './utils' ;
51
+ export { init } from './utils' ;
52
52
53
53
export declare class Address implements IAddress {
54
54
readonly ios : any ;
@@ -232,10 +232,17 @@ export declare class Stripe {
232
232
}
233
233
234
234
export declare class CardParams implements ICardParams {
235
- address : Address ;
236
235
readonly native : any
236
+ constructor ( )
237
+ constructor ( params : STPCardParams )
238
+ constructor ( number : string , expMonth : number , expYear : number , cvc : string )
239
+ address : Address ;
237
240
name : string ;
238
241
currency : string ;
242
+ number : string ;
243
+ expMonth : number ;
244
+ expYear : number ;
245
+ cvc : string ;
239
246
}
240
247
241
248
export declare class PaymentMethodCardChecks implements IPaymentMethodCardChecks {
You can’t perform that action at this time.
0 commit comments