Operand

thee, sea, us.

gram: docs

> ./docs/api/docx-editor-core/prosemirror-applyFormatting.api.md

## API Report File for "@eigenpal/docx-editor-core"
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { EditorView } from 'prosemirror-view';
// @public
export function applyFormatting(view: EditorView, options: ApplyFormattingOptions): boolean;
// @public
export interface ApplyFormattingOptions {
// (undocumented)
marks: {
bold?: boolean;
italic?: boolean;
underline?: boolean | {
style?: string;
};
strike?: boolean;
color?: {
rgb?: string;
themeColor?: string;
};
highlight?: string;
fontSize?: number;
fontFamily?: {
ascii?: string;
hAnsi?: string;
};
};
// (undocumented)
paraId: string;
// (undocumented)
search?: string;
}
// @public
export type BreakKind = 'page' | 'sectionNextPage' | 'sectionContinuous';
// @public
export function insertBreak(view: EditorView, options: InsertBreakOptions): boolean;
// @public (undocumented)
export interface InsertBreakOptions {
// (undocumented)
paraId: string;
// (undocumented)
type: BreakKind;
}
// @public
export function setParagraphStyle(view: EditorView, options: {
paraId: string;
styleId: string;
}, deps: {
styleResolver: StyleResolver | null;
numbering?: NumberingMap | null;
}): boolean;
// (No @packageDocumentation comment for this package)