refactor(biocatch): fixed casing

This commit is contained in:
Anton Zagrebelny 2019-05-14 16:21:21 +03:00
parent a42e7b8258
commit 0634e64b58

View File

@ -2,16 +2,16 @@ import { Injectable } from '@angular/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core'; import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
/** /**
* @name Biocatch * @name BioCatch
* @description * @description
* Biocatch SDK Cordova support * BioCatch SDK Cordova support
* *
* @usage * @usage
* ```typescript * ```typescript
* import { Biocatch } from '@ionic-native/biocatch'; * import { BioCatch } from '@ionic-native/biocatch';
* *
* *
* constructor(private biocatch: Biocatch) { } * constructor(private biocatch: BioCatch) { }
* *
* ... * ...
* *
@ -23,14 +23,14 @@ import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
* ``` * ```
*/ */
@Plugin({ @Plugin({
pluginName: 'Biocatch', pluginName: 'BioCatch',
plugin: 'cordova-plugin-biocatch', plugin: 'cordova-plugin-biocatch',
pluginRef: 'BioCatch', pluginRef: 'BioCatch',
repo: 'https://bitbucket.org/whisprnd/biocatch-cordova-plugin', repo: 'https://bitbucket.org/whisprnd/biocatch-cordova-plugin',
platforms: ['iOS'], platforms: ['iOS'],
}) })
@Injectable() @Injectable()
export class Biocatch extends IonicNativePlugin { export class BioCatch extends IonicNativePlugin {
/** /**
* Start a session * Start a session