14 lines
209 B
TypeScript
14 lines
209 B
TypeScript
export const CROP_TYPE = {
|
|
CUSTOM: 'CUSTOM',
|
|
AUTO: 'AUTO',
|
|
};
|
|
|
|
export const defaultAlignOption = {
|
|
points: ['bl', 'br'],
|
|
offset: [6, 0],
|
|
overflow: {
|
|
adjustX: true,
|
|
adjustY: true,
|
|
},
|
|
};
|