UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

23 lines (22 loc) 496 B
import { Type } from "igniteui-webcomponents-core"; /** * Indicates how the images will be stretched. */ export declare enum ImageStretchOptions { /** * Images stretch but try to maintain aspect ratio. */ Uniform = 0, /** * Image fills all available space but breaks aspect ratio. */ Fill = 1, /** * Image is displayed unstreteched. */ None = 2 } /** * @hidden */ export declare let ImageStretchOptions_$type: Type;