mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-10 11:40:16 +08:00
Merge pull request #6013 from amritk/patch-2
Added locale to StripeCheckoutOptions
This commit is contained in:
Vendored
+4
-3
@@ -15,12 +15,13 @@ interface StripeCheckoutHandler {
|
||||
}
|
||||
|
||||
interface StripeCheckoutOptions {
|
||||
key: string;
|
||||
token: (token: StripeTokenResponse) => void;
|
||||
key?: string;
|
||||
token?: (token: StripeTokenResponse) => void;
|
||||
image?: string;
|
||||
name?: string;
|
||||
description?: string;
|
||||
amount?: number;
|
||||
locale?: string;
|
||||
currency?: string;
|
||||
panelLabel?: string;
|
||||
zipCode?: boolean;
|
||||
@@ -32,4 +33,4 @@ interface StripeCheckoutOptions {
|
||||
closed?: () => void;
|
||||
}
|
||||
|
||||
declare var StripeCheckout: StripeCheckoutStatic;
|
||||
declare var StripeCheckout: StripeCheckoutStatic;
|
||||
|
||||
Reference in New Issue
Block a user