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
+1 -3
View File
@@ -148,11 +148,10 @@ export interface OCRResult {
plugin: 'cordova-plugin-mobile-ocr',
pluginRef: 'textocr',
repo: 'https://github.com/NeutrinosPlatform/cordova-plugin-mobile-ocr',
platforms: ['Android', 'iOS']
platforms: ['Android', 'iOS'],
})
@Injectable()
export class OCR extends IonicNativePlugin {
/**
* Extract text from image
* @param sourceType {OCRSourceType} type of image source
@@ -163,5 +162,4 @@ export class OCR extends IonicNativePlugin {
recText(sourceType: OCRSourceType, source: string): Promise<OCRResult> {
return;
}
}