diff --git a/tns-core-modules/ui/enums/enums.d.ts b/tns-core-modules/ui/enums/enums.d.ts index d75378e8a..8959367c6 100644 --- a/tns-core-modules/ui/enums/enums.d.ts +++ b/tns-core-modules/ui/enums/enums.d.ts @@ -192,13 +192,14 @@ export module Stretch { /** * 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; /** * 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, - * the image is clipped to fit in the destination + * its native aspect ratio. */ export var aspectFit: string;