CmpStr - v3.2.1
    Preparing search index...

    Interface StructuredDataResult<T, R>

    StructuredDataResult represents a lookup result with original object attached.

    interface StructuredDataResult<T = any, R = MetricRaw> {
        key: keyof T;
        obj: T;
        raw?: R;
        result: CmpStrResult;
    }

    Type Parameters

    • T = any

      The type of the original object

    • R = MetricRaw

      The type of the metric raw result

    Index

    Properties

    Properties

    key: keyof T
    obj: T
    raw?: R
    result: CmpStrResult