From a7c9abc44959913735a0fba4b1861605abbbb557 Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Sun, 30 Apr 2017 20:13:21 +0200 Subject: [PATCH] refactor(barcode-scanner): fix tslint error (#1447) --- src/@ionic-native/plugins/barcode-scanner/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/@ionic-native/plugins/barcode-scanner/index.ts b/src/@ionic-native/plugins/barcode-scanner/index.ts index ee2fe178c..48def9f8a 100644 --- a/src/@ionic-native/plugins/barcode-scanner/index.ts +++ b/src/@ionic-native/plugins/barcode-scanner/index.ts @@ -57,7 +57,7 @@ export interface BarcodeScannerOptions { } export interface BarcodeScanResult { - format: "QR_CODE" | "DATA_MATRIX" | "UPC_E" | "UPC_A" | "EAN_8" | "EAN_13" | "CODE_128" | "CODE_39" | "CODE_93" | "CODABAR" | "ITF" | "RSS14" | "RSS_EXPANDED" | "PDF417" | "AZTEC" | "MSI"; + format: 'QR_CODE' | 'DATA_MATRIX' | 'UPC_E' | 'UPC_A' | 'EAN_8' | 'EAN_13' | 'CODE_128' | 'CODE_39' | 'CODE_93' | 'CODABAR' | 'ITF' | 'RSS14' | 'RSS_EXPANDED' | 'PDF417' | 'AZTEC' | 'MSI'; cancelled: boolean; text: string; }