/** * @file /src/types/body.ts * @name Body * @description Type definitions for body in the editor. */ import { MarginConfig } from "./page"; /** * Attributes for a body node. */ export type BodyNodeAttributes = { pageMargins: MarginConfig; };