From 30313a7e269fca5ea1e93b5c080d51df85d002cc Mon Sep 17 00:00:00 2001 From: Adriano Ruberto Date: Thu, 28 Jun 2018 18:37:42 +0200 Subject: [PATCH] Use spaces instead of tabs --- types/expo/index.d.ts | 58 +++++++++++++++++++++---------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/types/expo/index.d.ts b/types/expo/index.d.ts index 2e4eb675e4..3e86549492 100644 --- a/types/expo/index.d.ts +++ b/types/expo/index.d.ts @@ -1513,42 +1513,42 @@ export namespace Gyroscope { * ImageManipulator */ export namespace ImageManipulator { - type Action = Resize | Rotate | Flip | Crop; + type Action = Resize | Rotate | Flip | Crop; - interface Resize { - resize: { width: number, height: number }; - } + interface Resize { + resize: { width: number, height: number }; + } - interface Rotate { - rotate: number; - } + interface Rotate { + rotate: number; + } - interface Flip { - flip?: { vertical?: boolean; horizontal?: boolean }; - } + interface Flip { + flip?: { vertical?: boolean; horizontal?: boolean }; + } - interface Crop { - originX: number; - originY: number; - width: number; - height: number; - } + interface Crop { + originX: number; + originY: number; + width: number; + height: number; + } - interface ImageResult { - uri: string; - width: number; - height: number; - base64?: string; - } + interface ImageResult { + uri: string; + width: number; + height: number; + base64?: string; + } - interface SaveOptions { - base64?: boolean; - /** A value in range `0` - `1` specifying compression level of the result image. `1` means no compression and `0` the highest compression. */ - compress?: number; - format?: 'jpeg' | 'png'; - } + interface SaveOptions { + base64?: boolean; + /** A value in range `0` - `1` specifying compression level of the result image. `1` means no compression and `0` the highest compression. */ + compress?: number; + format?: 'jpeg' | 'png'; + } - function manipulate(uri: string, actions: Action[], saveOptions?: SaveOptions): Promise; + function manipulate(uri: string, actions: Action[], saveOptions?: SaveOptions): Promise; } /**