refactor(barcode-scanner): fix tslint error (#1447)

This commit is contained in:
Daniel Sogl 2017-04-30 20:13:21 +02:00 committed by Ibby Hadeed
parent 748c6bd9be
commit a7c9abc449

View File

@ -57,7 +57,7 @@ export interface BarcodeScannerOptions {
} }
export interface BarcodeScanResult { 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; cancelled: boolean;
text: string; text: string;
} }