mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-11-16 01:21:16 +01:00
# Description of Changes Move frontend code into `core` folder and add infrastructure for `proprietary` folder to include premium, non-OSS features
13 lines
318 B
TypeScript
13 lines
318 B
TypeScript
import { PAGE_SIZES } from "@app/constants/pageSizeConstants";
|
|
|
|
// Default crop area (covers entire page)
|
|
export const DEFAULT_CROP_AREA = {
|
|
x: 0,
|
|
y: 0,
|
|
width: PAGE_SIZES.A4.width,
|
|
height: PAGE_SIZES.A4.height,
|
|
} as const;
|
|
|
|
|
|
export type ResizeHandle = 'nw' | 'ne' | 'sw' | 'se' | 'n' | 'e' | 's' | 'w' | null;
|