/** * @file /src/constants/pageBorders.ts * @name PageBorders * @description Constants for page borders in the editor. */ import { BorderConfig } from "../types/page"; export const DEFAULT_PAGE_BORDER_CONFIG: BorderConfig = { top: 1, right: 1, bottom: 1, left: 1 };