feat: add local OneNote and ONEPKG reader

This commit is contained in:
2026-07-22 17:06:03 +02:00
commit f581cbdced
93 changed files with 14949 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
export { enumerateCabinet, extractCabinet } from './cabinet.js';
export { OnePkgError } from './errors.js';
export { openOneNotePackage } from './package.js';
export type {
OneNotePackageOpenOptions,
OneNotePackageOpenResult,
OneNotePackageSectionParseOutcome,
OneNotePackageSectionParseRequest,
OneNotePackageSectionParser,
ParsedOneNotePackageSection,
} from './package.js';
export {
DEFAULT_ONEPKG_LIMITS,
type CabCompressionMethod,
type CabEnumerationResult,
type CabExtractionResult,
type CabFileEntry,
type CabFolderSummary,
type CabOpenOptions,
type ExtractedCabFile,
type OnePkgCancellation,
type OnePkgLimits,
} from './types.js';