sdf-parser
    Preparing search index...

    Interface ParseResult

    Return value of the parse function.

    interface ParseResult {
        labels: string[];
        molecules: Molecule[];
        statistics: LabelStatistic[];
        time: number;
    }
    Index

    Properties

    labels: string[]

    Sorted list of all field label names found in the file.

    molecules: Molecule[]

    Parsed molecule entries.

    statistics: LabelStatistic[]

    Per-label statistics.

    time: number

    Wall-clock time taken to parse, in milliseconds.