libs/ui/file-upload/src/lib/image-dimension-constraints.ts
An individual size constraint
Properties |
height |
height:
|
Type : literal type
|
width |
width:
|
Type : literal type
|
export interface TsFileImageDimensionContraint {
height: {
min: number;
max: number;
};
width: {
min: number;
max: number;
};
}
/**
* An array of file size constraints
*/
export type TsFileImageDimensionConstraints = TsFileImageDimensionContraint[];