From f61004de623a2011e99a6a8092048b513025f5ed Mon Sep 17 00:00:00 2001 From: Felipe Constantino Date: Thu, 26 Apr 2018 14:03:20 -0300 Subject: [PATCH] feat(types): add types for #1523 --- types/index.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 12b3d96..6a2d4f2 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -17,7 +17,11 @@ type FlashMode = { on: any, off: any, torch: any, auto: any }; type CameraType = { front: any, back: any }; type WhiteBalance = { sunny: any, cloudy: any, shadow: any, incandescent: any, fluorescent: any, auto: any }; type BarCodeType = { aztec: any, code128: any, code39: any, code39mod43: any, code93: any, ean13: any, ean8: any, pdf417: any, qr: any, upce: any, interleaved2of5: any, itf14: any, datamatrix: any }; -type VideoQuality = { '2160p': any, '1080p': any, '720p': any, '480p': any, '4:3': any }; +type VideoQuality = { + '2160p': any, '1080p': any, '720p': any, '480p': any, '4:3': any; + /** iOS Only. Android not supported. */ + '288p': any; +}; type VideoCodec = { 'H264': symbol, 'JPEG': symbol, 'HVEC': symbol, 'AppleProRes422': symbol, 'AppleProRes4444': symbol }; type FaceDetectionClassifications = { all: any, none: any };