Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/docxml/src/components/Break.ts>BreakProps

TypeScript (component) library for building and parsing a DOCX file
Go to Latest
type alias BreakProps
import { type BreakProps } from "https://deno.land/x/docxml@5.14.1/src/components/Break.ts";

A type describing the props accepted by Break.

definition: { type?:
| "page"
| "column"
| "textWrapping"
| null
; clear?:
| "left"
| "right"
| "all"
| "none"
| null
; }