Update enums.d.ts (#5530)

I believe aspectFill vs aspectFit definitions are reversed.
This commit is contained in:
Noumaan Shah
2018-03-15 11:47:08 -07:00
committed by Alexander Vakrilov
parent 75ee84cdd2
commit 9fddec517a

View File

@@ -192,13 +192,14 @@ export module Stretch {
/** /**
* The image is resized to fill in the destination dimensions while it preserves its native aspect ratio. * The image is resized to fill in the destination dimensions while it preserves its native aspect ratio.
* If the aspect ratio of the destination rectangle differs from the image, the image is clipped to fill
* in the destination.
*/ */
export var aspectFill: string; export var aspectFill: string;
/** /**
* The image is resized to fit the destination dimensions while it preserves * The image is resized to fit the destination dimensions while it preserves
* its native aspect ratio. If the aspect ratio of the destination rectangle differs from the image, * its native aspect ratio.
* the image is clipped to fit in the destination
*/ */
export var aspectFit: string; export var aspectFit: string;