Skip to content

Commit e70e508

Browse files
committed
docs(): update readme
[ci skip]
1 parent c28d9b6 commit e70e508

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Once you have the token, you can now send it to your backend so you can charge t
9696
### stripe.setPublishableKey(key, [success], [error])
9797
Set publishable key
9898

99-
**Kind**: static method of <code>[stripe](#module_stripe)</code>
99+
**Kind**: static method of [<code>stripe</code>](#module_stripe)
100100

101101
| Param | Type | Description |
102102
| --- | --- | --- |
@@ -109,11 +109,11 @@ Set publishable key
109109
### stripe.createCardToken(creditCard, success, error)
110110
Create a credit card token
111111

112-
**Kind**: static method of <code>[stripe](#module_stripe)</code>
112+
**Kind**: static method of [<code>stripe</code>](#module_stripe)
113113

114114
| Param | Type | Description |
115115
| --- | --- | --- |
116-
| creditCard | <code>[CreditCardTokenParams](#module_stripe.CreditCardTokenParams)</code> | Credit card information |
116+
| creditCard | [<code>CreditCardTokenParams</code>](#module_stripe.CreditCardTokenParams) | Credit card information |
117117
| success | <code>function</code> | Success callback |
118118
| error | <code>function</code> | Error callback |
119119

@@ -122,11 +122,11 @@ Create a credit card token
122122
### stripe.createBankAccountToken(bankAccount, success, error)
123123
Create a bank account token
124124

125-
**Kind**: static method of <code>[stripe](#module_stripe)</code>
125+
**Kind**: static method of [<code>stripe</code>](#module_stripe)
126126

127127
| Param | Type | Description |
128128
| --- | --- | --- |
129-
| bankAccount | <code>[BankAccountTokenParams](#module_stripe.BankAccountTokenParams)</code> | Bank account information |
129+
| bankAccount | [<code>BankAccountTokenParams</code>](#module_stripe.BankAccountTokenParams) | Bank account information |
130130
| success | <code>function</code> | Success callback |
131131
| error | <code>function</code> | Error callback |
132132

@@ -135,7 +135,7 @@ Create a bank account token
135135
### stripe.validateCardNumber(cardNumber, success, error)
136136
Validates card number
137137

138-
**Kind**: static method of <code>[stripe](#module_stripe)</code>
138+
**Kind**: static method of [<code>stripe</code>](#module_stripe)
139139

140140
| Param | Type | Description |
141141
| --- | --- | --- |
@@ -148,7 +148,7 @@ Validates card number
148148
### stripe.validateExpiryDate(expMonth, expYear, success, error)
149149
Validates the expiry date of a card
150150

151-
**Kind**: static method of <code>[stripe](#module_stripe)</code>
151+
**Kind**: static method of [<code>stripe</code>](#module_stripe)
152152

153153
| Param | Type | Description |
154154
| --- | --- | --- |
@@ -162,7 +162,7 @@ Validates the expiry date of a card
162162
### stripe.validateCVC(cvc, success, error)
163163
Validates a CVC of a card
164164

165-
**Kind**: static method of <code>[stripe](#module_stripe)</code>
165+
**Kind**: static method of [<code>stripe</code>](#module_stripe)
166166

167167
| Param | Type | Description |
168168
| --- | --- | --- |
@@ -187,7 +187,7 @@ cordova.plugin.stripe.validateCVC('424', onSuccess, onError);
187187
### stripe.getCardType(cardNumber, success, error)
188188
Gets a card type from a card number
189189

190-
**Kind**: static method of <code>[stripe](#module_stripe)</code>
190+
**Kind**: static method of [<code>stripe</code>](#module_stripe)
191191

192192
| Param | Type | Description |
193193
| --- | --- | --- |
@@ -206,7 +206,7 @@ cordova.plugins.stripe.getCardType('4242424242424242', function(cardType) {
206206
### stripe.CreditCardTokenParams : <code>Object</code>
207207
Parameters to create a credit card token
208208

209-
**Kind**: static typedef of <code>[stripe](#module_stripe)</code>
209+
**Kind**: static typedef of [<code>stripe</code>](#module_stripe)
210210
**Properties**
211211

212212
| Name | Type | Description |
@@ -229,7 +229,7 @@ Parameters to create a credit card token
229229
### stripe.BankAccountTokenParams : <code>object</code>
230230
Parameters to create a bank account token
231231

232-
**Kind**: static typedef of <code>[stripe](#module_stripe)</code>
232+
**Kind**: static typedef of [<code>stripe</code>](#module_stripe)
233233
**Properties**
234234

235235
| Name | Type | Description |

0 commit comments

Comments
 (0)