refactor(lib): run prettier

This commit is contained in:
Daniel Sogl
2020-05-16 14:40:49 +02:00
parent f5133c691d
commit 511a02d50b
326 changed files with 3079 additions and 4092 deletions
+6 -8
View File
@@ -84,11 +84,11 @@ export interface StripeCardTokenRes {
* Card Object.
*/
card: {
brand: string,
exp_month: number,
exp_year: number,
funding: string,
last4: string
brand: string;
exp_month: number;
exp_year: number;
funding: string;
last4: string;
};
/**
* Token Request Date Time.
@@ -140,11 +140,10 @@ export interface StripeCardTokenRes {
plugin: 'cordova-plugin-stripe',
pluginRef: 'cordova.plugins.stripe',
repo: 'https://github.com/zyramedia/cordova-plugin-stripe',
platforms: ['Android', 'Browser', 'iOS']
platforms: ['Android', 'Browser', 'iOS'],
})
@Injectable()
export class Stripe extends IonicNativePlugin {
/**
* Set publishable key
* @param publishableKey {string} Publishable key
@@ -215,5 +214,4 @@ export class Stripe extends IonicNativePlugin {
getCardType(cardNumber: string): Promise<string> {
return;
}
}