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

    Interface IPSTMessageStore

    interface IPSTMessageStore {
        get displayName(): string;
        get primaryNodeId(): number;
        getAllProperties(): Property[];
        getProperty(key: number): Property | undefined;
        requestAccessToUserNode(): Promise<PUNode | undefined>;
        toJSON(): any;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Accessors

    • get primaryNodeId(): number

      Get the primary node ID.

      Returns number

    Methods

    • Try to get specified property from PropertyContext.

      Parameters

      • key: number

        0x3001 is PR_DISPLAY_NAME for example

      Returns Property | undefined

      The found one will be returned. Otherwise undefined is returned.

    • Requests access to the user node of the internal PST structure.

      Returns Promise<PUNode | undefined>