@hiraokahypertools/pst-extractor - v0.5.0-alpha.2
    Preparing search index...

    Interface PUSubNode

    Represents a sub-node within a property structure.

    interface PUSubNode {
        extractAsPropertyContext(): Promise<PUPropertyContext>;
        extractAsTableContext(): Promise<PUTableContext>;
        getSubNodeOf(childNodeId: number): Promise<PUSubNode | undefined>;
    }
    Index

    Methods

    • Gets a sub-node by its ID.

      e.g.

      • 0x692 for recipients
      • 0x671 for attachments
      • ltpRowId for the content of an attachment

      Parameters

      • childNodeId: number

        The ID of the child node.

      Returns Promise<PUSubNode | undefined>