Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 1x 1x 1x 1x 1x 1x 1x | /** * @internal * CSS class names for image editing elements */ export enum ImageEditElementClass { /** * CSS class name for resize handle */ ResizeHandle = 'r_resizeH', /** * CSS class name for rotate handle */ RotateHandle = 'r_rotateH', /** * CSS class name for the container of rotate handle */ RotateCenter = 'r_rotateC', /** * CSS class name for crop overlay */ CropOverlay = 'r_cropO', /** * CSS class name for container of crop handle */ CropContainer = 'r_cropC', /** * CSS class name for crop handle */ CropHandle = 'r_cropH', } |