igniteui-react-grids
Version:
Ignite UI React grid components.
23 lines (22 loc) • 488 B
TypeScript
import { Type } from "igniteui-react-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;