Properties like h, f etc. have been renamed to height,format but it hasn't be documented, during migration I was confused why I was getting errors.
relevant code here I believe:
|
export interface ImageModifiers { |
|
width: number | string |
|
height: number | string |
|
fit: string |
|
format: string |
|
quality: string | number |
|
background: string |
|
blur: number |
|
} |
Properties like
h,fetc. have been renamed toheight,formatbut it hasn't be documented, during migration I was confused why I was getting errors.relevant code here I believe:
image/src/types/image.ts
Lines 5 to 13 in 5808397