feat: parse rich OneNote content resources

This commit is contained in:
2026-07-22 19:08:49 +02:00
parent 670310ea9e
commit c99615f5e6
13 changed files with 2671 additions and 6 deletions

View File

@@ -10,6 +10,20 @@ export {
} from './parser/limits.js';
export {
parseOneNoteSection,
parseOneNoteSectionContent,
type ParseOneNoteSectionOptions,
} from './parser/parse-section.js';
export type { OneNotePageSummaryDto, OneNoteSectionDto } from './model/dto.js';
export type {
OneNoteAttachmentBlock,
OneNoteColor,
OneNoteContentBlock,
OneNoteImageBlock,
OneNotePageContentModel,
OneNoteResource,
OneNoteSectionContentModel,
OneNoteTableBlock,
OneNoteTextBlock,
OneNoteTextRun,
OneNoteTextStyle,
} from './one/content-model.js';